標題:
2023/12/02 上課重點(模擬考&考試傳來這裡)
[打印本頁]
作者:
鄭繼威
時間:
2023-12-2 11:30
標題:
2023/12/02 上課重點(模擬考&考試傳來這裡)
本帖最後由 鄭繼威 於 2023-12-2 14:35 編輯
複習
Java 105 字串索引
Java 307 反轉陣列
Java 309 階乘遞迴計算
Java 310 遞迴函數
抽考TQC+
Java 306 矩陣相加
請將程式碼上傳
上傳範例:
[104]程式碼
[205]程式碼
TQC+官網
本認證為操作題,總分為100分。
操作題為第一至三類各考一題共三大題,第一大題至第二大題每題30分,第三大題每題40分,總計100分。
於認證時間60分鐘內作答完畢,成績加總達70分(含)以上者該科合格。
[作業]
完成
[KitaJudge]
305~310
並
通過AC
上課錄影
作者:
利勁鋼
時間:
2023-12-2 12:01
import java.util.Scanner;
public class Main{
public static void main(String args[]){
int a[][]={{1,2,3},{4,5,6}};
int b[][]=new int[2][3];
int c[][]=new int[2][3];
Scanner s=new Scanner(System.in);
String x[]=s.nextLine().split(" ");
if(x.length!=6)
{
System.out.println("error");
return;
}
try{
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
b[i][j]=Integer.parseInt(x[i*3+j]);
}
}
}
catch(Exception e){
System.out.println("error");
return;
}
compute(a, b, c);
}
public static void compute(int a[][],int b[][],int c[][]){
for(int i=0; i<2; i++){
for(int j=0; j<3; j++)
{
c[i][j]=a[i][j]+b[i][j];
}
}
print(c);
}
public static void print(int c[][]){
for(int i=0; i<2; i++){
for(int j=0; j<3; j++)
{
System.out.printf("%4d",c[i][j]);
}
System.out.println();
}
}
}
複製代碼
作者:
高昀昊
時間:
2023-12-2 12:09
import java.util.Scanner;
public class JPA306 {
public static void main(String[] args) {
int a[][]={{1,2,3},{4,5,6,}};
int b[][]=new int[2][3];
int c[][]=new int[2][3];
Scanner s=new Scanner(System.in);
String x[]=s.nextLine().split(" ");
if(x.length!=6){
System.out.print("error");
return;
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2