博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT乙级-1036.跟奥巴马一起编程(15)
阅读量:5925 次
发布时间:2019-06-19

本文共 706 字,大约阅读时间需要 2 分钟。

题解

题解:

注意“行数是列数的50%(四舍五入)”

1 #include
2 using namespace std; 3 int main() 4 { 5 int n; 6 char c; 7 cin >> n >> c; 8 int n1; 9 if (n % 2 == 0)10 n1 = n / 2 - 2;11 else12 n1 = n / 2 - 1;13 for (int i = 0; i < n; i++)14 {15 cout << c;16 }17 cout << endl;18 for (int i = 0; i < n1; i++)19 {20 cout << c;21 for (int j = 0; j < (n - 2); j++)22 {23 cout << " ";24 }25 cout << c;26 cout << endl;27 }28 for (int i = 0; i < n; i++)29 {30 cout << c;31 }32 cout << endl;33 return 0;34 }

 

 

 

转载于:https://www.cnblogs.com/lanmaos/p/7181405.html

你可能感兴趣的文章
tracertroute原理
查看>>
Mysql存储过程编写
查看>>
使用zabbix模板监控tomcat-解决模板部分监控项不生效问题
查看>>
Myslq 启动报错The server quit without updating PID file
查看>>
tomcat
查看>>
memcached安装配置
查看>>
2013年下半年信息系统项目管理师考试试卷(回忆版)
查看>>
我的友情链接
查看>>
为什么很多大学生毕业后都说大学所学知识无用?
查看>>
oracle goldengate使用测试
查看>>
求斐波那契数列的第n项值——9
查看>>
闲话IPv6地址
查看>>
std::function与std::bind 函数指针
查看>>
Git and GitHub
查看>>
ajax中同步和异步的使用
查看>>
BarTender数据中的转义符序列知识讲解
查看>>
selenium - switch_to_alert() - 警告框处理
查看>>
sp获取用户权限,打印出批量赋权语句
查看>>
抓包分析SSL/TLS连接建立过程【总结】
查看>>
可输入的模糊搜索ComBox控件
查看>>