Board logo

標題: 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

  1. import java.util.Scanner;
  2. public class JP107 {
  3.     public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int a=s.nextInt();
  6.         int b=s.nextInt();
  7.         int c=s.nextInt();
  8.         int d=s.nextInt();
  9.         int e=s.nextInt();
  10.         int f=s.nextInt();      
  11.         System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
  12.         System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
  13.     }
  14. }
複製代碼

作者: 柏霖    時間: 2023-5-27 17:10

本帖最後由 柏霖 於 2024-1-6 14:03 編輯
  1. import java.util.Scanner;
  2. public class JP101 {

  3.         public static void main(String[] args)
  4.         {
  5.                 Scanner sc=new Scanner(System.in);
  6.         int a=sc.nextInt();
  7.         int b=sc.nextInt();
  8.         int c=sc.nextInt();
  9.         int d=sc.nextInt();
  10.         int e=sc.nextInt();
  11.         int f=sc.nextInt();
  12.         System.out.printf("%10d %10d %10d\n%10d %10d %10d\n",a,b,c,d,e,f);
  13.         System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d",a,b,c,d,e,f);
  14.         }

  15. }
複製代碼

作者: 張駿霖    時間: 2023-5-27 17:18

  1. import java.util.Scanner;
  2. public class Ch01 {
  3.     public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int a=s.nextInt();
  6.         int b=s.nextInt();
  7.         int c=s.nextInt();
  8.         int d=s.nextInt();
  9.         int e=s.nextInt();
  10.         int f=s.nextInt();      
  11.         System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
  12.         System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
  13.     }
  14. }
複製代碼

作者: 侯宣任    時間: 2023-5-27 17:22

  1. import java.util.Scanner;
  2. public class JP107 {
  3.     public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int a=s.nextInt();
  6.         int b=s.nextInt();
  7.         int c=s.nextInt();
  8.         int d=s.nextInt();
  9.         int e=s.nextInt();
  10.         int f=s.nextInt();      
  11.         System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
  12.         System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
  13.     }
  14. }
複製代碼

作者: 許浩浩    時間: 2023-5-27 17:23

  1. import java.util.Scanner;
  2. public class JP107 {
  3.         public static void main(String[]args){
  4.                 Scanner s=new Scanner(System.in);
  5.                 int a=s.nextInt();
  6.                 int b=s.nextInt();
  7.                 int c=s.nextInt();
  8.                 int d=s.nextInt();
  9.                 int e=s.nextInt();
  10.                 int f=s.nextInt();
  11.                 System.out.printf("%10d%10d%10d\n%10d%10d%10d\n",a,b,c,d,e,f);
  12.                 System.out.printf("%-10d%-10d%-10d\n%-10d%-10d%-10d",a,b,c,d,e,f);
  13.         }
  14. }
複製代碼

作者: 錢冠叡    時間: 2023-5-27 17:25

  1. import java.util.Scanner;
  2. public class JP107 {
  3.     public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int a=s.nextInt();
  6.         int b=s.nextInt();
  7.         int c=s.nextInt();
  8.         int d=s.nextInt();
  9.         int e=s.nextInt();
  10.         int f=s.nextInt();      
  11.         System.out.printf("%10d %10d %10d\n%10d%10d %10d\n", a, b, c, d, e, f);
  12.         System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
  13.     }
  14. }
複製代碼

作者: 謝閔丞    時間: 2023-5-27 17:25

  1. import java.util.Scanner;
  2. public class CH01 {
  3. public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int a=s.nextInt();
  6.         int b=s.nextInt();
  7.         int c=s.nextInt();
  8.         int d=s.nextInt();
  9.         int e=s.nextInt();
  10.         int f=s.nextInt();      
  11.             System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
  12.             System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
  13.          }
  14. }
複製代碼

作者: 侯宣仲    時間: 2023-5-27 17:25

  1. import java.util.Scanner;
  2. public class test {

  3.         public static void main(String[] args) {
  4.                 Scanner sc=new Scanner(System.in);
  5.              int a=sc.nextInt();
  6.              int b=sc.nextInt();
  7.              int c=sc.nextInt();
  8.              int d=sc.nextInt();
  9.              int e=sc.nextInt();
  10.              int f=sc.nextInt();
  11.              System.out.printf("%10d%10d%10d\n%10d%10d%10d\n",a,b,c,d,e,f);
  12.              System.out.printf("%-10d%-10d%-10d\n%-10d%-10d%-10d\n",a,b,c,d,e,f);
  13.             

  14.         }

  15. }
複製代碼

作者: 孫文康    時間: 2023-5-27 17:26

  1. import java.util.Scanner;
  2. public class Test
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 Scanner sc=new Scanner(System.in);
  7.                 int a=sc.nextInt();
  8.                 int b=sc.nextInt();
  9.                 int c=sc.nextInt();
  10.                 int d=sc.nextInt();
  11.                 int e=sc.nextInt();
  12.                 int f=sc.nextInt();
  13.                 System.out.printf("%10d%10d%10d\n%10d%10d%10d\n",a,b,c,d,e,f);
  14.                 System.out.printf("%-10d%-10d%-10d\n%-10d%-10d%-10d\n",a,b,c,d,e,f);
  15.         }
  16. }
複製代碼

作者: 謝閔丞    時間: 2023-6-3 16:38

  1. import java.util.Scanner;
  2. public class JP107 {
  3.     public static void main(String[] args) {
  4.         Scanner s=new Scanner(System.in);
  5.         int a=s.nextInt();
  6.         int b=s.nextInt();
  7.         int c=s.nextInt();
  8.         int d=s.nextInt();
  9.         int e=s.nextInt();
  10.         int f=s.nextInt();      
  11.         System.out.printf("%10d %10d %10d\n%10d %10d %10d\n", a, b, c, d, e, f);
  12.         System.out.printf("%-10d %-10d %-10d\n%-10d %-10d %-10d\n", a, b, c, d, e, f);
  13.     }
  14. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2