ACM算法竞赛:抄课文

时间:2022-11-18 17:32:13

题目如下:

比如现在要写一句话 Hello world

输入: n (n > 0)

比如输入的n为10,就将Hello world打印十

#include <stdio.h>
#include <string.h>
int main(){

    char str[201];
    int cnt ;
    gets(str);
    while(scanf("%d",&cnt) == 1){  //scanf在这里是有返回值的,输出一个参数返回1,输出N个参数返回n
       while(cnt--){
       puts(str);
    }
    }
  return 0 ;
}