標題:
[隨堂測驗] 九九乘法表 (二)
[打印本頁]
作者:
陳品肇
時間:
2019-7-6 15:30
標題:
[隨堂測驗] 九九乘法表 (二)
運用巢狀 while迴圈 , 寫一個排列整齊的九九乘法表如下圖所示.
提示: \t 代表鍵盤上的Tab鍵, 可用來對齊
[attach]6833[/attach]
作者:
蔡依宸
時間:
2019-7-6 16:50
public class Class {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1,j=1;
while(i<=9)
{
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
j=1;
System.out.println();
}
}
}
複製代碼
作者:
黃安立
時間:
2019-7-6 16:52
public class Ch01
{
public static void main(String args[])
{
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
j++;
}
}
}
}
複製代碼
作者:
譚詩澐
時間:
2019-7-6 16:57
本帖最後由 譚詩澐 於 2019-7-6 16:58 編輯
public class CH76 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1, j=1;
while(i<=9)
{
while(j<=9)
{
System.out.print(i+"*"+j+"="+(i*j)+"\t");
j++;
}
i++;
j=1;
System.out.println();
}
}
}
複製代碼
作者:
蔡季庭
時間:
2019-7-6 16:57
public class Ch {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1,j=1;
while(i<=9)
{
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
j=1;
System.out.println();
}
}
}
複製代碼
作者:
戴安利
時間:
2019-7-6 16:58
package haha;
public class haha {
public static void main(String[] args)
{
int i=1;
int j=1;
while(i<10)
{
while(j<10)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
j=1;
i++;
System.out.println();
}
}
}
複製代碼
作者:
戴偉宸
時間:
2019-7-6 17:11
public class work {
public static void main(String[] args) {
int i=1,j=1;
while(i<10)
{
while(j<10)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
j=1;
System.out.println();
}
}
}
複製代碼
作者:
戴唯陞
時間:
2019-7-6 17:12
public class jvav01 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i = 1, j = 1;
while (i <= 9) {
while (j <= 9)
{
System.out.print(i + "*" + j + "=" + i * j + "\t");
j++;
}
i++;
j = 1;
System.out.println();
}
}
}
複製代碼
作者:
章幼莛
時間:
2019-7-13 14:54
public class Ch01 {
public static void main(String[] args) {
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
i++;
System.out.println();
}
}
}
複製代碼
作者:
陳柏霖
時間:
2019-7-13 15:02
public class World {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
System.out.println();
i++;
}
}
}
複製代碼
作者:
洪子涵
時間:
2019-8-9 15:25
public class Ch01 {
public static void main(String[] args) {
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
System.out.print(i+"*"+j+"="+i*j+"\t");
j++;
}
System.out.println();
i++;
}
}
}
複製代碼
作者:
洪藜芸
時間:
2019-8-9 15:26
public class Ci {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=1;
while(i<=9)
{
int a=1;
while(a<=9)
{
System.out.print(i+"*"+a+"="+i*a+"\t");
a++;
}
System.out.println();
i++;
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2