使用陣列陣列加法、乘法 =====程式內容===== public class array_add{ public static void main(String[] args) { int a[][] = {{5,3,7},{7,3,11}};//宣告陣列a的數值 int b[][] = {{1,6,2},{1,3,3}};//宣告陣列b的數值 int c[]...
www.wretch.cc