標題:
九九乘法表 (一)
[打印本頁]
作者:
tonyh
時間:
2019-7-3 11:26
標題:
九九乘法表 (一)
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\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 11:43
public class CH07 {
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:43
public class Ch10 {
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 11:43
import java.util.Scanner;
public class Ch03
{
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 11:44
package fine;
public class foradd {
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 11:44
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 11:44
public class Ch04 {
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 11:45
public class Ch10 {
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 11:45
public class Ch23 {
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 11:45
public class Ch16 {
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 11:46
public class Ch99 {
public static void main(String[] args) {
for(int i=1;i<=9 ;i+=1)
{
for(int j=1; j<=9; j+=1 )
{
System.out.print(i+"x"+j+"="+(i*j)+"\t" );
}
System.out.println();
}
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-3 11:46
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+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
陳璽安
時間:
2019-7-3 11:46
public class Ch13 {
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 11:46
public class Ch41 {
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:46
public class Ch16 {
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 11:47
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+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
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+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-3 11:47
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+"X"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
陳致翰
時間:
2019-7-3 11:48
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+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
蔡杰恩
時間:
2019-7-3 11:48
public class Ch01 {
public static void main(String[] args) {
for(int i=1 ; i<=9 ; i=i+1)
{
for(int j=1; j<=9; j=j+1)
{
System.out.print(i+"x"+j+"="+(1*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-3 11:49
package ch01;
public class ch02
{
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 11:50
public class ch02 {
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 11:52
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+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2