'전체 글'에 해당되는 글 541건

블로그 이미지

wtdsoul

,

평균 ver 2

코딩테스트 2024. 9. 19. 23:33

#include <cstdio>
#include <string.h>

int N;
float score[1005];
int M;

int main() {
   scanf("%d", &N);
   M = -21e8;//<-상정할 수 있는 가장 작은값
   float avg=0, sum=0;
   for (int i = 0; i < N; i++) {
      scanf("%f", &score[i]);

      if (score[i] > M) {
         M = score[i];
      }
      sum += score[i];
   }
   //avg = sum / N;


   avg = sum * 100 / M / N;
}

'코딩테스트' 카테고리의 다른 글

선택 정렬 : 오름차순  (0) 2024.09.19
과제 : 백준 아스키 코드  (0) 2024.09.18
과제 : 백준 문자열  (0) 2024.09.18
문자와 문자열(백준)  (0) 2024.09.18
LeetCode two.sum 배열 합산 반환  (0) 2024.09.18
블로그 이미지

wtdsoul

,

 

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <vector>
#include <algorithm>
using namespace std;

int main()
{
    
    int a[100], n, idx, i, j, tmp;
    
    scanf("%d", &n);
    for(i= 0; i<n; i++) {
      scanf("%d", &a[i]);
    }
    
    
    for(i=0; i<n-1; i++) {
      idx = i;
        for(j=i+1; j<n; j++) {
          if(a[j] < a[idx]) idx = j;
      }
         tmp = a[i];
         a[i] = a[idx];
         a[idx] = tmp; 
 
    }
    for(i=0; i<n; i++) {
      printf("%d ", a[i]);
    }
   
}

'코딩테스트' 카테고리의 다른 글

평균 ver 2  (0) 2024.09.19
과제 : 백준 아스키 코드  (0) 2024.09.18
과제 : 백준 문자열  (0) 2024.09.18
문자와 문자열(백준)  (0) 2024.09.18
LeetCode two.sum 배열 합산 반환  (0) 2024.09.18
블로그 이미지

wtdsoul

,