Java、Shell、awk分別打印乘法表

分別使用Java和Shell來打印乘法表 Java: public static void main(String[] args){ for(int i=1;i<=9;i++){ for(int j =1;j<=i;j++){ System.out.print(j+"*"+i+"="+i*j+" "); } System.out.println(); } } 結果: Shel
相關文章
相關標籤/搜索