標題:
printf() 函式 (二)
[打印本頁]
作者:
tonyh
時間:
2017-5-13 10:39
標題:
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);
}
}
複製代碼
作者:
陳泓瑜
時間:
2017-5-13 18:14
public class Ecl7042
{
public static void main(String[] args)
{
String str1="dog",str2="cat";
int x=3,y=5;
System.out.printf("There are %d %ss and %d %Ss.",x,str1,y,str2);
}
}
複製代碼
作者:
黃茂勛
時間:
2017-5-20 10:31
public class Hu02
{
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);
}
}
複製代碼
作者:
陸長辰
時間:
2017-5-20 10:33
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);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2