24h購物| | PChome| 登入
2011-04-04 16:24:40| 人氣3,040| 回應0 | 上一篇 | 下一篇

a001. 哈囉

推薦 0 收藏 0 轉貼0 訂閱站台

內容 :

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

輸入說明 :

指定的文字

輸出說明 :

輸出指定的文字

範例輸入 :

world
C++
mary

範例輸出 :

hello, world
hello, C++
hello, mary

/**********************************************************************************/
/* Problem: a001 "哈囉" from Brian Kernighan */
/* Language: C */
/* Result: AC (4ms, 254KB) on ZeroJudge */
/* Author: restart at 2011-04-04 16:18:23 */
/**********************************************************************************/


#include<stdio.h>
#include<stdlib.h>
main()
{
char S[100];
while(scanf("%s",S)==1)
printf("hello, %s\n",S);
return 0;
}
/**********************************************************************************/
/* Problem: a001 "哈囉" from Brian Kernighan */
/* Language: C */
/* Result: AC (0ms, 254KB) on ZeroJudge */
/* Author: restart at 2011-04-04 16:19:57 */
/**********************************************************************************/


#include<stdio.h>
main()
{
char S[100];
while(scanf("%s",S)!=EOF)
printf("hello, %s\n",S);
return 0;
}
/**********************************************************************************/
/* Problem: a001 "哈囉" from Brian Kernighan */
/* Language: C */
/* Result: AC (2ms, 230KB) on ZeroJudge */
/* Author: restart at 2011-04-04 16:23:35 */
/**********************************************************************************/


#include<stdio.h>
main()
{
char S[100];
while(gets(S))
printf("hello, %s\n",S);
return 0;
}

台長: Morris
人氣(3,040) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 心情日記(隨筆、日記、心情手札) | 個人分類: ZeroJudge |
此分類下一篇:a002. 簡易加法

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文