Ŀ

գҪıйص䡣
һrepeat (0<repeat<10)repeat㣺
һַԻسͳеʵĸ֮ÿոָոǶ
ʾ˵

2   (repeat=2)
Let's  go   to room  209.
  Programming is fun

count = 5     ("Let's  go   to room  209."5)
count = 3     ("  Programming is fun"3)



#include <stdio.h>
int main(void)
{
    char c;
    int count, word;
    int repeat, ri;

    scanf("%d", &repeat);
    getchar();
    for(ri = 1; ri <= repeat; ri++){
        c = getchar();
/*---------*/
        printf("count = %d\n", count);
    }
}