Test Message

c186: 蝸牛老師的點名單

內容

蝸牛老師新開了一門課,第一堂課時拿了一張白紙讓學生簽到。現在他需要用簽到單上的名字製作一份點名單。


輸入

輸入只有一行,含有 n 個 (1 ≤ n ≤ 30) 以空白隔開的學生名字。所有名字均由字母組成。

John Mary Steve David

輸出

將每個名字單獨輸出於一行。

John
Mary
Steve
David


解題思路

簡單的輸入輸出。


完整程式碼

AC (2ms, 108KB)
#include <stdio.h>

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