標題:
九九乘法表 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-7-2 23:22
標題:
九九乘法表 (一)
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\t 代表鍵盤上的Tab鍵,可用來對齊。
public class Ch14 {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
林侑成
時間:
2019-7-3 10:37
import java.util.Scanner;
public class ASDF
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int a=1;a<=9;a++)
{
System.out.print(i+"*"+a+"="+i*a+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
蔣宗儒
時間:
2019-7-3 11:06
本帖最後由 蔣宗儒 於 2019-7-3 11:22 編輯
package junior;
public class junior {
public static void main(String args[]) {
for (int i = 1; i <= 9; i += 1) {
for (int m = 1; m <= 9; m += 1)
System.out.print(m + "*" + i + "=" + (i * m) + "\t");
System.out.println();
}
}
}
複製代碼
作者:
張閎鈞
時間:
2019-7-3 11:24
package text369;
import java.util.Scanner;
public class text123 {
public static void main(String[] args) {
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
呂昀宸
時間:
2019-7-3 11:26
package nsez;
import java.util.Scanner;
public class nsez {
public static void main(String[] args) {
Scanner z = new Scanner(System.in);
for (int a = 1; a <= 9; a = a + 1) {
for (int b = 1; b <= 9; b = b + 1) {
System.out.print(a + "*" + b + "=" + a * b + "\t");
}
System.out.println();
}
}
}
複製代碼
作者:
黃恆嘉
時間:
2019-7-3 11:27
public class Ch05 {
public static void main(String[] args) {
for (int m = 1; m <= 9; m += 1) {
for (int n = 1; n <= 9; n += 1) {
System.out.print(m + "*" + n + "=" + m * n + "\t");
}
System.out.println();
}
}
}
複製代碼
作者:
湯東緯
時間:
2019-7-3 11:28
package ch01;
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= 9; j++) {
System.out.print(i + "*" + j + "=" + (i * j) + "\t");
}
System.out.println();
}
}
}
複製代碼
作者:
潘承渙
時間:
2019-7-3 11:32
import java.util.Scanner;
public class Ch05 {
public static void main(String args[]) {
for (int a = 1; a <= 9; a = a + 1) {
for (int b = 1; b <= 9; b = b + 1) {
System.out.print(a + "X" + b + "=" + (a * b) + "\t");
}
System.out.println();
}
}
}
複製代碼
作者:
黃安立
時間:
2019-7-3 11:32
public class Ch05 {
public static void main(String[] args) {
int sum=1;
for (int i = 1; i<=9; i++)
{
for(int j=1;j<=9;j++)
{
System.out.println(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2