導航:首頁 > 編程語言 > java輸出99乘法表代碼

java輸出99乘法表代碼

發布時間:2023-12-06 12:48:37

❶ 怎麼用java輸出九九乘法表

Java 技術具有卓越的通用性、高效性、平台移植性和安全性,廣泛應用回於PC、數據中心、游戲控制台答、科學超級計算機、行動電話和互聯網,同時擁有全球最大的開發者專業社群。

❷ 用Java代碼實現輸出乘法口訣表有幾種方法

用JAVA編寫九九乘法表,方法多多,但這兩種寫法,卻是我見過的最經典,最簡單,最容易理解的, 現錄在這里,希望用得著的朋友,能將之化為已用. package com..www.oo04; public class OODemo06 { /** * @param args */ public static void main(String[] args) { //最簡單的九九乘法表 //適用於對數組理解有障礙的人 for(int i=1;i<10;i++){ for(int j=1;j<=i;j++){ System.out.print(i+"*"+j+"="+i*j+"\t"); } System.out.println(""); } //採用二維數組列印的九九乘法表 int a[][] = new int[10][10]; for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ a[i][j] = i*j; System.out.print(i+"*"+j+"="+a[i][j]+"\t"); } System.out.println(""); } } } Console: 1*1=1 2*1=2 2*2=4 3*1=3 3*2=6 3*3=9 4*1=4 4*2=8 4*3=12 4*4=16 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 1*1=1 2*1=2 2*2=4 3*1=3 3*2=6 3*3=9 4*1=4 4*2=8 4*3=12 4*4=16 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 /*public class JavaTest { public static void main(String[] args){ int a,b,c; a=b=c=1; boolean w; w=a++>1&&++b>c++; System.out.println(a+","+b+","+c+","+w); } } */ /* //Java實現乘法口訣 public class JavaTest { public static void main(String[] args){ int a=1,b; while(a<=9){ b=1; while(b<=a){ System.out.print(" "+b+"*"+a+"="+a*b); b++; } System.out.println(); a++; } } } */ /*public class JavaTest{ public static void main(String[] args){ String s1=new String("0860371"),s2="0860371"; System.out.println(s1==s2); System.out.println(s1.equals(s2)); System.out.println(s1.endsWith(s2)==s1.startsWith(s2)); } } */ /*import java.util.*; public class JavaTest{ public static void main(String[] args){ String s1="public static void main(Sting[] args)"; StringTokenizer s2=new StringTokenizer(s1,", ()[]"); int n=s2.countTokens(); System.out.println(n); while(s2.hasMoreTokens()) System.out.println(s2.nextToken()); } } */ 以下這種是不加判斷語句的: public class m69Table{ public static void main(String[] args){ for(int i=1; i<10; i++){ String nbsp = ""; for(int k=i; k<9; k++){ nbsp +=" "; /**4個空格,為了對齊*/ } for(int j=i; j>0; j--){ System.out.print(nbsp+i+"x"+j); nbsp =" "; } System.out.println(); } } }

❸ 用while循環語句編程輸出九九乘法口訣表

方法一:

1 i = 1

2 while i < 10:

3 k = 1

4 while k <= i:

5 print('%d*%d=%2d '% (i,k,i*k),end='') #end=『』 表示不換行(系統默認輸出完畢換行)

6 k += 1

7 print()

8 i += 1

輸出結果

9 1*1= 1

10 2*1= 2 2*2= 4

11 3*1= 3 3*2= 6 3*3= 9

12 4*1= 4 4*2= 8 4*3=12 4*4=16

13 5*1= 5 5*2=10 5*3=15 5*4=20 5*5=25

14 6*1= 6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36

157*1= 7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49

16 8*1= 8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64

17 9*1= 9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81

方法二、

1 a = 9

2 while a > 0:

3 i = 1

4 while i <= a:

5 print('%d * %d = %2d '%(a,i,a*i),end= '')

6 i += 1

7 print()

8 a -= 110 11

輸出結果:

9 9 * 1 = 9 9 * 2 = 18 9 * 3 = 27 9 * 4 = 36 9 * 5 = 45 9 * 6 = 54 9 * 7 = 63 9 * 8 = 72 9 * 9 = 81

10 9 * 1 = 9 9 * 2 = 18 9 * 3 = 27 9 * 4 = 36 9 * 5 = 45 9 * 6 = 54 9 * 7 = 63 9 * 8 = 72 9 * 9 = 81

11 8 * 1 = 8 8 * 2 = 16 8 * 3 = 24 8 * 4 = 32 8 * 5 = 40 8 * 6 = 48 8 * 7 = 56 8 * 8 = 64

12 7 * 1 = 7 7 * 2 = 14 7 * 3 = 21 7 * 4 = 28 7 * 5 = 35 7 * 6 = 42 7 * 7 = 49

13 6 * 1 = 6 6 * 2 = 12 6 * 3 = 18 6 * 4 = 24 6 * 5 = 30 6 * 6 = 36

14 5 * 1 = 5 5 * 2 = 10 5 * 3 = 15 5 * 4 = 20 5 * 5 = 25

15 4 * 1 = 4 4 * 2 = 8 4 * 3 = 12 4 * 4 = 16

16 3 * 1 = 3 3 * 2 = 6 3 * 3 = 9

17 2 * 1 = 2 2 * 2 = 4

18 1 * 1 = 1

❹ 怎麼編寫Java程序列印九九乘法表

package text;

public classTEST{

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( );

}

}

}

(4)java輸出99乘法表代碼擴展閱讀

用其他的方法輸出九九乘法表:

#include<stdio.h>

#include<stdlib.h>

int main(void)

{

int i, j ;

for (i = 1; i < 10;i++)

{

for (j = 1; j <= i; j++)

printf("%d*%d = %-3d", i, j, i*j);

printf(" ");

}

system("pause");

return0;

}

閱讀全文

與java輸出99乘法表代碼相關的資料

熱點內容
什麼編程可以控制瀏覽器 瀏覽:277
微信文愛聊天截圖圖片 瀏覽:427
糖果小號密碼查看工具 瀏覽:191
pm一般做什麼編程 瀏覽:937
linux共享文件給mac 瀏覽:428
ps另存為時找不到文件 瀏覽:818
iphone6s朋友圈視頻沒聲音 瀏覽:728
win10系統工具文件夾 瀏覽:862
微信扔出去的怎樣找回來 瀏覽:744
編程怎麼錄視頻 瀏覽:470
東方財富app解套率怎麼計算 瀏覽:74
win10系統為excel文件在哪裡 瀏覽:578
字幕文件哪個網站下載 瀏覽:745
app怎麼推廣推廣 瀏覽:674
小鳥壁紙哪個文件夾刪不掉 瀏覽:419
閨蜜圈app怎麼樣 瀏覽:931
新版天貓app如何查看詳情 瀏覽:390
sql資料庫同步 瀏覽:492
網路面板線錯了怎麼辦 瀏覽:343
cs6畫筆工具在哪 瀏覽:290

友情鏈接