標題:
printf() 函式 (二)
[打印本頁]
作者:
tonyh
時間:
2022-1-8 19:40
標題:
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);
}
}
複製代碼
作者:
黃子倢
時間:
2022-1-8 19:50
public class Ch01
{
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);
}
}
複製代碼
作者:
林佑宸
時間:
2022-1-8 19:51
public class Ch01
{
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);
}
}
複製代碼
作者:
余柏緯
時間:
2022-1-8 19:53
public class Ch533 {
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);
}
}
複製代碼
作者:
蔡寓珉
時間:
2022-1-8 19:53
public class Ch100 {
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);
}
}
複製代碼
作者:
許洧熏
時間:
2022-1-8 19:53
本帖最後由 許洧熏 於 2022-1-8 19:57 編輯
public class Ch01 {
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);
}
}
複製代碼
作者:
朱奕祐
時間:
2022-1-8 19:53
public class Ch02{
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);
}
}
複製代碼
作者:
林鼎傑
時間:
2022-1-8 19:54
public class Ch01 {
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);
}
}
複製代碼
作者:
呂尚霖
時間:
2022-1-8 19:54
public class Ch02
{
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);
}
}
複製代碼
作者:
俞成章
時間:
2022-1-8 19:55
public class CH01 {
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);
}
}
複製代碼
作者:
林土水
時間:
2022-1-8 19:56
public class Ch02 {
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);
}
}
複製代碼
作者:
王秉鈞
時間:
2022-1-8 19:56
public class Ch26 {
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");
}
}
複製代碼
作者:
陳志祐
時間:
2022-1-15 01:10
public class Ch71
{
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 %S.",a,str1,b,str2);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2