游客 Signup | Login
中文 | En

3065 - 逐行打印100个星号

逐行打印100个星号

Input

Output

Examples

Input

no input needed

Output

*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*

Solution C++

#include<iostream>
using namespace std;
int main()
{
    for (int i=1;i<=100;i++)
         cout<<'*'<<endl;
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题