공부하는 히욤이

[기초다지기] : 연산자 - 형성평가 본문

Algorithm/Jungol

[기초다지기] : 연산자 - 형성평가

히욤이 2019. 1. 6. 22:53

연산자 - 형성평가1

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 8151 회    시도횟수: 14313 회   



국어 영어 수학 컴퓨터 과목의 점수를 정수로 입력받아서 총점과 평균을 구하는 프로그램을 작성하시오. (단 평균의 소수점 이하는 버림 한다.)







70 95 63 100
sum 328
avg 82




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) {
 
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        int c = scanner.nextInt();
        int d = scanner.nextInt();
        
        System.out.println("sum " +(a+b+c+d));
        System.out.println("avg " +((a+b+c+d)/4));
    }
 
}
 
cs






연산자 - 형성평가2

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 8147 회    시도횟수: 11235 회   



두 정수를 입력받아서 나눈 몫과 나머지를 다음과 같은 형식으로 출력하는 프로그램을 작성하시오.







35 10
35 / 10 = 3...5




1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) {
 
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        System.out.println(a + " / " + b + " = " +(a/b) +"..." + (a%b));
    }
 
}
 
cs





연산자 - 형성평가3

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 7782 회    시도횟수: 11136 회   



직사각형의 가로와 세로의 길이를 정수형 값으로 입력받은 후 가로의 길이는 5 증가시키고 세로의 길이는 2배하여 저장한 후 가로의 길이 세로의 길이 넓이를 차례로 출력하는 프로그램을 작성하시오.







20 15
width = 25
length = 30
area = 750



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) {
 
        Scanner scanner = new Scanner(System.in);
        int x = scanner.nextInt() + 5;
        int y = scanner.nextInt() * 2;
        System.out.println("width = " + x);
        System.out.println("length = " + y);
        System.out.println("area = " + (x*y));
        
        
    }
 
}
 
cs





연산자 - 형성평가4

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 7561 회    시도횟수: 10610 회   



두 정수를 입력받아 첫 번째 수는 전치증가연산자를 사용하고 두 번째 수는 후치감소연산자를 사용하여 출력하고 바뀐 값을 다시 출력하는 프로그램을 작성하시오.







10 15
11 15
11 14




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) {
 
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        ++a;
        System.out.println(a + " "+ b);
        b--;
        System.out.println(a + " "+ b);
        
    }
 
}
 
cs






연산자 - 형성평가5

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 7709 회    시도횟수: 15996 회    Special Judge



민수와 기영이의 키와 몸무게를 입력받아 민수가 키도 크고 몸무게도 크면 1 그렇지 않으면 0을 출력하는 프로그램을 작성하시오.

(JAVA는 1 이면 true, 0 이면 false를 출력한다.)







150 35
145 35




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) {
 
        Scanner scanner = new Scanner(System.in);
        int mh = scanner.nextInt();
        int mg = scanner.nextInt();
        int kh = scanner.nextInt();
        int kg = scanner.nextInt();
        System.out.println((mh>kh)&&(mg>kg));
        
    }
 
}
 
cs