標題:
107 基本認識
[打印本頁]
作者:
陳楷翔
時間:
2023-5-27 10:34
標題:
107 基本認識
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入六個整數,將每三個整數列印在同一列。
為了輸出美觀,每個整數給予10個欄位寬,並分別輸出靠右與靠左對齊。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
六個整數
輸出說明
每三個整數輸出在同一列共分兩列,且每個整數給予10個欄位寬,分別輸出靠右與靠左對齊
範例輸入
10
100
100000
100000
100
10
範例輸出
10 100 100000
100000 100 10
10 100 100000
100000 100 10
程式輸出擷圖
下圖中的 黃色點 為 空格
[attach]15710[/attach]
作者:
陳楷翔
時間:
2023-5-27 10:39
import java.util.Scanner;
public class JP107 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
}
}
複製代碼
作者:
柏霖
時間:
2023-5-27 17:10
本帖最後由 柏霖 於 2024-1-6 14:03 編輯
import java.util.Scanner;
public class JP101 {
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
int c=sc.nextInt();
int d=sc.nextInt();
int e=sc.nextInt();
int f=sc.nextInt();
System.out.printf("%10d %10d %10d\n%10d %10d %10d\n",a,b,c,d,e,f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d",a,b,c,d,e,f);
}
}
複製代碼
作者:
張駿霖
時間:
2023-5-27 17:18
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
}
}
複製代碼
作者:
侯宣任
時間:
2023-5-27 17:22
import java.util.Scanner;
public class JP107 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
}
}
複製代碼
作者:
許浩浩
時間:
2023-5-27 17:23
import java.util.Scanner;
public class JP107 {
public static void main(String[]args){
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d%10d%10d\n%10d%10d%10d\n",a,b,c,d,e,f);
System.out.printf("%-10d%-10d%-10d\n%-10d%-10d%-10d",a,b,c,d,e,f);
}
}
複製代碼
作者:
錢冠叡
時間:
2023-5-27 17:25
import java.util.Scanner;
public class JP107 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d %10d %10d\n%10d%10d %10d\n", a, b, c, d, e, f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
}
}
複製代碼
作者:
謝閔丞
時間:
2023-5-27 17:25
import java.util.Scanner;
public class CH01 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
}
}
複製代碼
作者:
侯宣仲
時間:
2023-5-27 17:25
import java.util.Scanner;
public class test {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
int c=sc.nextInt();
int d=sc.nextInt();
int e=sc.nextInt();
int f=sc.nextInt();
System.out.printf("%10d%10d%10d\n%10d%10d%10d\n",a,b,c,d,e,f);
System.out.printf("%-10d%-10d%-10d\n%-10d%-10d%-10d\n",a,b,c,d,e,f);
}
}
複製代碼
作者:
孫文康
時間:
2023-5-27 17:26
import java.util.Scanner;
public class Test
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
int c=sc.nextInt();
int d=sc.nextInt();
int e=sc.nextInt();
int f=sc.nextInt();
System.out.printf("%10d%10d%10d\n%10d%10d%10d\n",a,b,c,d,e,f);
System.out.printf("%-10d%-10d%-10d\n%-10d%-10d%-10d\n",a,b,c,d,e,f);
}
}
複製代碼
作者:
謝閔丞
時間:
2023-6-3 16:38
import java.util.Scanner;
public class JP107 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
int e=s.nextInt();
int f=s.nextInt();
System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2