用java如何寫出for迴圈,計算1~100之間整數的平方值.. 謝謝幫我解答!
2006-11-10 10:04:57 · 3 個解答 · 發問者 林俊宏 1 in 電腦與網際網路 ➔ 程式設計
//Power by Eclipse v3.2.0//import java.util.Scanner;public class JAVA_TEST{//主程式類別檔名 JAVA_TEST.java public static void main(String[] args){ //=====START=====// for(int i=0;i<100;i++){ System.out.printf("(%d)%d\n",i+1,(int)Math.pow(i+1,2)); } //=====END=====// }//main}//JAVA_TEST
2006-11-10 11:59:48 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋
不需要用到乘法
2006-11-22 03:14:16 · answer #2 · answered by ? 4 · 0⤊ 0⤋
是這樣吧?
class Question {
public static void main(String args[]) {
int num;
for (num = 1; num <= 100; num++)
System.out.println(num+" 的平方是 "+num*num);
}
}
2006-11-10 11:52:48 · answer #3 · answered by Anonymous · 0⤊ 0⤋