2011年4月22日 星期五

分享

高中生程式解題系統 a001: 哈囉

#include <stdio.h>


int main(void) 
{

    char input[1000];

    while(gets(input)!=NULL)
    {
        printf("hello, %s\n",input);
    }
    
    return 0;
}

沒有留言:

張貼留言