標題:
printf() 函式 (二)
[打印本頁]
作者:
tonyh
時間:
2015-3-28 15:34
標題:
printf() 函式 (二)
本帖最後由 tonyh 於 2015-3-28 16:28 編輯
printf()函式輸出練習:
%d 整數
%s 字串
%S 轉換為大寫字母的字串
[attach]1196[/attach]
public class ch66
{
public static void main(String[] args)
{
String str1="dog";
String str2="cat";
int a=3, b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
張峻瑋
時間:
2015-3-28 16:27
public class ch66
{
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);
}
}
複製代碼
作者:
李允軒
時間:
2015-3-28 16:27
public class ch66
{
public static void main(String args[])
{
String str1="dog";
String str2="cat";
int a=3, b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
劉得恩
時間:
2015-3-28 16:28
public class ch66
{
public static void main(String args[])
{
String s1="dog",s2="cat";
int a=3,b=5;
System.out.printf("There are %d %ss and %d %Ss",a,s1,b,s2);
}
}
複製代碼
作者:
周雍程
時間:
2015-3-28 16:28
public class ch66
{
public static void main(String args[])
{
String str1="dog";
String str2="cat";
int a=3,b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
林宇翔
時間:
2015-3-28 16:28
public class ch66
{
public static void main(String args[])
{
String str1="dog";
String str2="cat";
int a=3, b=5;
System.out.printf("There are %d %ss and %d %Ss.",a,str1,b,str2);
}
}
複製代碼
作者:
張彥承
時間:
2015-3-28 16:31
public class ch66
{
public static void main(String args[])
{
String str1="dog";
String 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