554 : 반복제어문3 - 자가진단7
문제
자연수 n을 입력받아서 n개의 줄에 n+1개의 숫자 혹은 문자로 채워서 다음과 같이 출력하는 프로그램을 작성하시오
입력
3
출력
코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int inputNumber = sc.nextInt();
int cntChar = 0;
int cntNum = 0;
int askiA = 65;
int startN = 1;
int cntN = 0;
for(int i = 1; i <= inputNumber; i++) {
for(int j = startN; j < startN + inputNumber - cntN; j++) {
System.out.print(j + " ");
cntNum++;
}
cntN++;
startN = 1 + cntNum;
for(int j = askiA; j <= askiA + cntChar; j++) {
char ch = (char)j;
System.out.print(ch + " ");
}
System.out.println();
cntChar++;
askiA = askiA + cntChar;
}
sc.close();
}
}
Author And Source
이 문제에 관하여(554 : 반복제어문3 - 자가진단7), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@beom2day/LanguageCoder-554-반복제어문3-자가진단7저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)