当前位置:网站首页>跟奥巴马一起画方块(Lua)
跟奥巴马一起画方块(Lua)
2022-07-07 15:38:00 【有趣就行】
题目
美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧!
输入格式:
输入在一行中给出正方形边长N(3≤N≤21)和组成正方形边的某种字符C,间隔一个空格。
输出格式:
输出由给定字符C画出的正方形。但是注意到行间距比列间距大,所以为了让结果看上去更像正方形,我们输出的行数实际上是列数的50%(四舍五入取整)。
输入样例:
10 a
输出样例:
aaaaaaaaaa
aaaaaaaaaa
aaaaaaaaaa
aaaaaaaaaa
aaaaaaaaaa
代码
local s = io.read()
local n, ch
for i = 1, #s do
if s:sub(i,i) == " " then
n, ch = s:sub(1, i - 1), s:sub(i+1)
break
end
end
ch = ch:rep(n)
for i = 1, n / 2 + 0.5 do
print(ch)
end
边栏推荐
- 【黄啊码】为什么我建议您选择go,而不选择php?
- LeetCode 213. 打家劫舍 II 每日一题
- PLC:自动纠正数据集噪声,来洗洗数据集吧 | ICLR 2021 Spotlight
- Proxmox VE重装后,如何无损挂载原有的数据盘?
- QT picture background color pixel processing method
- Jenkins发布uniapp开发的H5遇到的问题
- 麒麟信安加入宁夏商用密码协会
- LeetCode 1986. 完成任务的最少工作时间段 每日一题
- 麒麟信安操作系统衍生产品解决方案 | 存储多路径管理系统,有效提高数据传输可靠性
- LeetCode 1031. 两个非重叠子数组的最大和 每日一题
猜你喜欢
【视频/音频数据处理】上海道宁为您带来Elecard下载、试用、教程
SIGGRAPH 2022最佳技术论文奖重磅出炉!北大陈宝权团队获荣誉提名
MRS离线数据分析:通过Flink作业处理OBS数据
[Seaborn] combination chart: facetgrid, jointgrid, pairgrid
How to choose the appropriate automated testing tools?
QT中自定义控件的创建到封装到工具栏过程(一):自定义控件的创建
Sator推出Web3遊戲“Satorspace” ,並上線Huobi
管理VDI的几个最佳实践
浅浅理解.net core的路由
Matplotlib绘图界面设置
随机推荐
Solidity 开发环境搭建
skimage学习(1)
如何在博客中添加Aplayer音乐播放器
LeetCode 213. 打家劫舍 II 每日一题
Jenkins发布uniapp开发的H5遇到的问题
LeetCode 1986. 完成任务的最少工作时间段 每日一题
What is cloud computing?
Linux 安装mysql8.X超详细图文教程
redis主从、哨兵主备切换搭建一步一步图解实现
PLC: automatically correct the data set noise, wash the data set | ICLR 2021 spotlight
LeetCode 1155. N ways to roll dice one question per day
L1-028 判断素数(Lua)
How to choose the appropriate automated testing tools?
Process from creation to encapsulation of custom controls in QT to toolbar (I): creation of custom controls
LeetCode 1981. Minimize the difference between the target value and the selected element one question per day
Sator launched Web3 game "satorspace" and launched hoobi
防火墙系统崩溃、文件丢失的修复方法,材料成本0元
LeetCode 152. 乘积最大子数组 每日一题
LeetCode 152. Product maximum subarray daily question
Lex & yacc of Pisa proxy SQL parsing