close

import java.util.Scanner;

public class hw002problem002 {

public static void main(String[] args) {
// TODO Auto-generated method stub

/*2. 試寫一程式, 讓使用者輸入任意正整數 N, 並利用 for 迴圈
* 在螢幕上輸出 1 * 1、2 * 2、...、N * N 之結果。
*/

System.out.println("輸入任意正整數 N");
Scanner wrt= new Scanner(System.in);
int N=wrt.nextInt();
int prto=0;
for(int i=1;i<N+1;i++){
prto=i*i;
System.out.println(i+"*"+i+"="+prto);
}


}

}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Dwell 的頭像
    Dwell

    歡迎詢價

    Dwell 發表在 痞客邦 留言(0) 人氣()