標題:
九九乘法表 (一)
[打印本頁]
作者:
tonyh
時間:
2019-8-5 11:10
標題:
九九乘法表 (一)
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\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-8-5 11:38
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-8-5 11:39
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-8-5 11:39
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-8-5 11:39
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.print("\n");
}
}
}
複製代碼
作者:
莊鈞程
時間:
2019-8-5 11:39
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-8-5 11:39
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-8-5 11:40
public class CH12 {
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-8-5 11:40
public class Ch11 {
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-8-5 11:41
本帖最後由 鄭宇崴 於 2019-8-5 11:56 編輯
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-8-5 11:41
public class Ch11 {
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.print(i+"x"+j+"="+i*j+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
黃芊嬡
時間:
2019-8-5 11:41
public class Ch10
{
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-8-5 11:41
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-8-5 11:42
import java.util.Scanner;
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-8-5 11:43
public class Ch12 {
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-8-5 11:44
public class Ch015
{
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-8-5 11:57
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();
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2