在北市師大附中,每個班都有一個屬於自己的班號,例如188班、1100班…
而利用C語言的printf函式便能將整數變數輸出到螢幕上,
現在請你實作這個基本輸出。
輸入說明 :
測資中有多行整數n(1<=n<=1261)
輸出說明 :
請對應每個n輸出一行:
'C' can use printf("%d",n); to show integer like XXXX
(請參考範例輸出)
範例輸入 :
1252
1000
範例輸出 :
'C' can use printf("%d",n); to show integer like 1252
'C' can use printf("%d",n); to show integer like 1000
提示 :
背景知識: 字串處理
程式碼 :
#include <stdio.h> int main() { int i; while(scanf("%d",&i)==1) printf("'C' can use printf(\"%%d\",n); to show integer like %d\n",i); return 0; }
http://zerojudge.tw/ShowProblem?problemid=d559
沒有留言:
張貼留言