標題:
printf() 函式 (二)
[打印本頁]
作者:
tonyh
時間:
2016-8-5 20:47
標題:
printf() 函式 (二)
本帖最後由 tonyh 於 2017-5-6 11:57 編輯
printf()函式輸出練習:
%d 整數
%s 字串
%S 轉換為大寫字母的字串
public class Ch65
{
public static void main(String[] args)
{
String str1="dog", str2="cat";
int a=3, b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
黃璽安
時間:
2016-8-5 21:02
public class Ch65
{
public static void main(String[] args)
{
String str1="dog", str2="cat";
int a=3, b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
曾挺桂
時間:
2016-8-5 21:04
public class JPA01
{
public static void main(String[] args)
{
String n="Dog", m="cat";
int x=3, y=5;
System.out.printf("There are %d %ss and %d %Ss.",x,n,y,m);;
}
}
複製代碼
作者:
沈子耕
時間:
2016-8-5 21:04
public class Ch65 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
String str1="dog", str2="cat";
int x=3, y=5;
System.out.printf("There are %d %ss, and %d %Ss.",x,str1,y,str2);
}
}
複製代碼
作者:
洪振庭
時間:
2016-8-5 21:04
public class Ch65
{
public static void main(String[] args)
{
String str1="dog", str2="cat";
int a=3, b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
李知易
時間:
2016-8-5 21:05
public class Ch65 {
public static void main(String[] args) {
String d="dog",c="cat";
int a=3,b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,d,b,c);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2