본문 바로가기
알고리즘풀이/정올-자바

[정올/JAVA] 573번 함수1 - 자가진단3 정수 n을 입력받아 n x n 크기의 숫자사각형을 출력하는 프로그램을 작성하시오

by 이얏호이야호 2020. 7. 24.

공부하시는대에 도움이 됐으면 좋겠습니다.

답안코드 확인해주세요!

 

더보기
import java.util.Scanner;



public class Main {

 public static void call(int input) {

 int count = 0;

 for (int j = 1; j <= input * input; j++) {

 if ( (count != 0)&&(count % input == 0)) {

 System.out.println();

 }

 count++;

 System.out.print(j + " ");

 }

 }







 public static void main(String args[]) {

 Scanner in = new Scanner(System.in);

 int input = in.nextInt();

 call(input);

 }

}


더 많은 자바코드가 보고 싶다면?

https://chuinggun.tistory.com/category/%EC%95%8C%EA%B3%A0%EB%A6%AC%EC%A6%98%ED%92%80%EC%9D%B4/%EC%A0%95%EC%98%AC-%EC%9E%90%EB%B0%94

댓글