day4
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day4相关的知识,希望对你有一定的参考价值。
day4:
经过一天的考试与测评,我发现自己在审题和考虑情况方面有很大的不足,以后要留意不同数据出现时发生的所有情况,不要遗漏数据输出时使用的库。
#include〈iostream〉
using namespace std;
int main()
{
int n,m;
cin>>m>>n;
for(int i=1;i<=m;i++)
{
for(int j=1;j<n;j++) cout<<‘*‘<<‘ ‘;
cout<<‘*‘<<endl;
}
return 0;
}
以上是关于day4的主要内容,如果未能解决你的问题,请参考以下文章