內容
在英文的世界裡,當你同意對方的說法時,會要求對方再講一次。(誤
輸入
輸入只有一行,含有要輸出的敘述。
Snail is handsome.
輸出
輸出所輸入的敘述兩次於同一行。
Snail is handsome. Snail is handsome.
解題思路
簡單的輸入輸出。
完整程式碼
AC (2ms, 84KB)
| #include <stdio.h>
 char str[1000];
 
 int main()
 {
 gets(str);
 printf("%s %s\n", str, str);
 return 0;
 }
 
 |