游客 Signup | Login
中文 | En

3114 - 用for语句打印二行星号(每行20个)

如题

Input

Output

Examples

Input


                

Output


                

Solution C++

#include<bits/stdc++.h>
using namespace std;

int main()
{
	for(int i=0;i<2;i++,cout<<endl)
	{
		for(int j=0;j<20;j++)
		{
			cout<<"*";
		}
	}
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题