FZR整理中!!!
2006-12-20 13:56:03 UTC
輸入一個數字,使檔案輸出一個三角形,輸入的數字即為此三角形最底邊的個數。
ex輸入3
印出
*
**
***
我不知要如何讓數字變為*印出來...
只能跑出
1
12
123
能否請版上的大大教教我...謝謝
====================================================================
import java.io.*;
import java.util.*;
class delta {
public static void main(String args[]) throws IOException {
int num;
String str;
BufferedReader buf;
buf = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Please input an integer: ");
str = buf.readLine();
num = Integer.parseInt(str);
for(int i = 1; i <= num; i++) {
for(int j = 1; j <= i; j++) {
System.out.print(j);
}
System.out.println();
}
}
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 163.14.5.101
ex輸入3
印出
*
**
***
我不知要如何讓數字變為*印出來...
只能跑出
1
12
123
能否請版上的大大教教我...謝謝
====================================================================
import java.io.*;
import java.util.*;
class delta {
public static void main(String args[]) throws IOException {
int num;
String str;
BufferedReader buf;
buf = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Please input an integer: ");
str = buf.readLine();
num = Integer.parseInt(str);
for(int i = 1; i <= num; i++) {
for(int j = 1; j <= i; j++) {
System.out.print(j);
}
System.out.println();
}
}
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 163.14.5.101