返回列表 發帖

[基礎題庫]a015 矩陣的翻轉

本帖最後由 李泳霖 於 2023-7-1 11:09 編輯

a015: 矩陣的翻轉

  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;


  4. public class Ch01 {
  5.         BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
  6.         int r,c;
  7.         int a[][];
  8.         String str;
  9.         String raw[];
  10.         Ch01() throws NumberFormatException, IOException
  11.         {
  12.                 while((str=br.readLine())!=null)
  13.                 {
  14.                         raw=str.split(" ");
  15.                         r=Integer.parseInt(raw[0]);
  16.                         c=Integer.parseInt(raw[1]);
  17.                         System.out.println(r+"列"+c+"欄");
  18.                 }
  19.         }
  20.         public static void main(String[] args) throws NumberFormatException, IOException {
  21.                 new Ch01();

  22.         }

  23. }
複製代碼
istak.teach2@gmail.com

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Vincent

TOP

此帖僅作者可見
istak.teach2@gmail.com

TOP

返回列表