用c语言编写一个小程序,功能是打印五遍自己的名字,写出代码。

2025-03-19 12:10:02
推荐回答(1个)
回答1:

#include
int main()
{for(int i=0;i<5;i++)
printf"My name\n");
return 0;
}