"SWEA 1984 중간 평균값 구하기"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA 1984 중간 평균값 구하기
;SWEA 1984 중간 평균값 구하기
* https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5Pw_-KAdcDFAUq
* 합에서 최대값, 최소값을 빼고 8로 나눈 후 반올림하여 구한다.


{{SWEA 헤더}}
{{SWEA 헤더}}
9번째 줄: 9번째 줄:
==C++==
==C++==
<source lang='cpp'>
<source lang='cpp'>
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int T;
scanf("%d", &T);
int a[10];
for(int tc=1; tc<=T; tc++) {
for(int i=0; i<10; i++) scanf("%d", &a[i]);
int min = 10000;
int max = 0;
int sum = 0;
for(int i=0; i<10; i++) {
if( a[i] < min ) min = a[i];
if( a[i] > max ) max = a[i];
sum += a[i];
}
int res = round((sum-min-max)/8.0F);
printf("#%d %d\n", tc, res);
}
}
</source>
</source>



2019년 1월 25일 (금) 17:25 판

1 개요

SWEA 1984 중간 평균값 구하기
  • 합에서 최대값, 최소값을 빼고 8로 나눈 후 반올림하여 구한다.
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 2-1

2 C++

#include <iostream>
#include <cmath>
using namespace std;
int main() {
	int T;
	scanf("%d", &T);
	int a[10];
	for(int tc=1; tc<=T; tc++) {
		for(int i=0; i<10; i++) scanf("%d", &a[i]);
		int min = 10000;
		int max = 0;
		int sum = 0;
		for(int i=0; i<10; i++) {
			if( a[i] < min ) min = a[i];
			if( a[i] > max ) max = a[i];
			sum += a[i];
		}
		int res = round((sum-min-max)/8.0F);
		printf("#%d %d\n", tc, res);
	}
}

3 Java

import java.util.Scanner;
public class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        for(int t=1; t<=T; t++) {
            int sum = 0;
            int max = 0;
            int min = 10000;
            for(int i=0; i<10; i++) {
                int n = sc.nextInt();
                if( n > max ) max = n;
                if( n < min ) min = n;
                sum += n;
            }
            System.out.format("#%d %d\n", t, Math.round( (sum-max-min)/8.0 ));
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}