자바프로그래밍

[자바프로그래밍] for 문 연습2

제주도소년 2019. 5. 9. 11:33

구구단 출력하기

import java.util.Scanner;

public class Main {

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

int a = scanner.nextInt();

for (int i = 1; i <= 9; i++) {
System.out.println(a + " * " + i + " = " + a * i);
}
}
}

출력

2
2 * 1 = 2
2 * 2 = 4
2 * 3 = 6
2 * 4 = 8
2 * 5 = 10
2 * 6 = 12
2 * 7 = 14
2 * 8 = 16
2 * 9 = 18

별찍기 1

import java.util.Scanner;

public class Main {

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

int a = scanner.nextInt();

for (int i = 0; i < a; i++) {

for (int j = 0; j <= i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}

 

출력

5
*
**
***
****
*****

별찍기 2

import java.util.Scanner;

public class Main {

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

int a = scanner.nextInt();

for (int i = 0; i < a; i++) {

for (int j = a; j > i; j--) {
System.out.print("*");
}
System.out.println();
}
}
}

 

출력

5
*****
****
***
**
*

 

n 까지의 합

import java.util.Scanner;

public class Main {

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

int n = scanner.nextInt();
int sum = 0;

for(int i = 0; i<=n; i++) {
sum += i;
}
System.out.println(sum);
}
}

 

출력

5
15

 

'자바프로그래밍' 카테고리의 다른 글

1. 자바 사칙연산 계산기  (0) 2019.10.30
[자바프로그래밍] if 문 연습  (0) 2019.05.10
[자바프로그래밍] for 문 연습  (0) 2019.05.07
[자바프로그래밍] Hello World!  (0) 2019.05.03
자바 별찍기  (0) 2018.09.13