標題:
【071】printf() 函式 (二)
[打印本頁]
作者:
tonyh
時間:
2023-5-17 16:57
標題:
【071】printf() 函式 (二)
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);
}
}
複製代碼
作者:
王捷恩
時間:
2023-5-17 17:03
public class A {
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);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2