2011年3月21日 星期一

a001: 哈囉

學習所有程式語言的第一個練習題
請寫一個程式,可以讀入指定的字串,並且輸出指定的字串。

輸入說明 :
指定的文字

輸出說明 :
輸出指定的文字

範例輸入 :
world
C++
mary

範例輸出 :
hello, world
hello, C++
hello, mary

程式碼:


#include<stdio.h>

int main()
{
    char s[100];
 
    while(scanf("%s",s)==1)
        printf("hello, %s\n",s);
    return 0;
}

http://zerojudge.tw/ShowProblem?problemid=a001

沒有留言:

張貼留言