C语言编程,编写C语言程序,输出100次自己名字的全拼,在线等!

如题所述

#include <stdio.h>
void main()
{
char ch [20];
int i=100;
printf("输入名字的拼音:");
gets(ch);
while (i)
{
puts(ch);
i--;
}
}
温馨提示:答案为网友推荐,仅供参考