Test Message

d559: 班號

內容

在北市師大附中,每個班都有一個屬於自己的班號,例如 188 班、1100 班…
而利用 C 語言的 printf 函式便能將整數變數輸出到螢幕上,
現在請你實作這個基本輸出。


輸入

測資中有多行整數 n(1<=n<=1261)

1252
1000

輸出

請對應每個 n 輸出一行:
‘C’ can use printf(“%d”,n); to show integer like XXXX
(請參考範例輸出)

‘C’ can use printf(“%d”,n); to show integer like 1252
‘C’ can use printf(“%d”,n); to show integer like 1000


解題思路

簡單的字串輸出。


完整程式碼

AC (1ms, 100KB)
#include <stdio.h>

int main()
{
int n;
while (scanf(" %d", &n) == 1)
{
printf("'C' can use printf(\"%%d\",n); to show integer like %d\n", n);
}
return 0;
}