其他分享
首页 > 其他分享> > 跟奥巴马一起画方块

跟奥巴马一起画方块

作者:互联网

题目应该有问题 说的是四舍五入取整… 明明就是上取整好嘛
用ceil上取整

来跟奥巴马一起左手右手一起画方块 左手右手就是一个穿天猴>>>

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
	double s;
	int n;
	char c;
	cin >> n >> c;
	int m = 0;
	s = n / 2;
	m = ceil(1.0 * n / 2);
	for (int i = 0; i < m; i++)
	{

		for (int j = 0; j < n; j++)
			cout << c;
		cout << endl;
	}
	return 0;
}
陌陌623 发布了77 篇原创文章 · 获赞 19 · 访问量 4833 私信 关注

标签:int,ceil,++,取整,方块,include,奥巴马,一起
来源: https://blog.csdn.net/weixin_45653525/article/details/104152777