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

2024-11-19 05:47:20
推荐回答(1个)
回答1:

#include

using namespace std;

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