用键盘输入一个整数n,然后把helloworld输出n遍,每输出一次就换一行,用C++解决

2024年11月19日 05:47
有1个网友回答
网友(1):

#include

using namespace std;

int main()
{
int n;
cin>>n;
for(int i=0;i{
cout<<"helloworld"<}
return 0;
}