최댓값 (2562)
Created:
최댓값은 어디에 있을까?
Bash
Bash 1
2
3
4
5
6
7
8
9
10
arr=(0 0)
for i in {1..9}; do
read n
if [ ${arr[0]} -lt $n ]; then
arr[0]=$n
arr[1]=$i
fi
done
echo $arr
echo ${arr[1]}
Bash
는 배열에서 인덱스를 지정하지 않으면 첫 번째 원소가 사용된다.
C
C 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
int main(void) {
int n;
int arr[2] = {0, 0};
for (int i=0; i<9; i++) {
scanf("%d", &n);
if (arr[0] < n) {
arr[0] = n;
arr[1] = i+1;
}
}
printf("%d %d\n", arr[0], arr[1]);
return 0;
}
Node.js
JavaScript 1
2
3
let [...arr] = require("fs").readFileSync(0).toString().trim().split("\n").map(Number);
let max = Math.max(...arr);
console.log( max, arr.indexOf(max)+1 );
PHP
PHP 1
2
3
4
5
6
7
8
9
10
<?php
$arr = [];
for ($i=0; $i<9; $i++) {
fscanf(STDIN, "%d", $n);
array_push($arr, $n);
}
$max = max($arr);
echo $max."\n";
echo array_search($max, $arr)+1;
?>
Python3
Python 1
2
3
4
arr = []
for i in range(9): arr.append(int(input()))
m = max(arr)
print(m, arr.index(m)+1)
Ruby
Ruby 1
2
3
4
5
6
arr = []
for i in 0...9
arr[i] = gets.chomp.to_i
end
max = arr.max()
puts "#{max} #{(arr.index max) + 1}"