Algorithm/Code_Up 2020. 7. 26.
<Java CodeUp 1107 문제: 반복 출력하기 1>
print 단어를 연속으로 50번 출력하시오. (띄어쓰기 없음) 입력은 없다. print를 연속으로 50번 출력한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 package RepeatPrint; /* * - 1107 * print 단어를 연속으로 50번 출력하시오.(띄어쓰기 없음) * * * 입력은 없다. * * * print를 연속으로 50번 출력한다. */ public class Repeat_1 { public static void main(String[] args) { // for문으로 "hello" 50번 줄바꿈 없이 출력 for(int i=0; i