2016年1月15日 星期五

d559: 班號

內容 :
在北市師大附中,每個班都有一個屬於自己的班號,例如188班、1100班…
而利用C語言的printf函式便能將整數變數輸出到螢幕上,
現在請你實作這個基本輸出。
輸入說明 : 
測資中有多行整數n(1<=n<=1261)
輸出說明 : 
請對應每個n輸出一行:
'C' can use printf("%d",n); to show integer like XXXX
(請參考範例輸出)
範例輸入 : help
1252
1000
範例輸出:
'C' can use printf(&quot;%d&quot;,n); to show integer like 1252
'C' can use printf(&quot;%d&quot;,n); to show integer like 1000
提示 : 
班號對你太簡單了嗎?這題相信你能輕鬆AC:
http://zerojudge.tw/ShowProblem?problemid=d564
標籤:
出處: 
jack1 (管理:jack1)


import java.util.Scanner;

public class d559 {

public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
int n=sc.nextInt();
System.out.println("'C' can use printf(\"%d\",n); to show integer like "+n);
}

}

}

沒有留言:

張貼留言