Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- c++
- 아두이노 컴파일러
- queue
- WinAPI
- priority_queue
- 아두이노
- html
- stl
- 시스템프로그래밍
- Algorithm
- 운영체제
- list
- 라인트레이서
- 수광 소자
- vector
- Deque
- Arduino
- Array
- Visual Micro
- 자료구조
- 컴퓨터 그래픽스
- set
- 통계학
- arduino compiler
- map
- 아두이노 소스
- Stack
- directx
- LineTracer
- C언어
Archives
- Today
- Total
Kim's Programming
2068. 최대수 구하기 본문
2068. 최대수 구하기
풀이 방법
<코드>
#include <iostream> int main() { int n{0}; std::cin>>n; for(int testCase =1;testCase <=n;testCase ++) { int max{0}; for(int i=0;i<10;i++) { int input{0}; std::cin>>input; if(max<input) max = input; } std::cout<<"#"<<testCase<<' '<<max<<"\n"; } return 0; }
'SW ExpertAcademy > D1' 카테고리의 다른 글
2071. 평균값 구하기 (0) | 2018.11.30 |
---|---|
2070. 큰 놈, 작은 놈, 같은 놈 (0) | 2018.11.30 |
2063. 중간값 찾기 (0) | 2018.11.30 |
2058. 자릿수 더하기 (0) | 2018.11.30 |
2056. 연월일 달력 (0) | 2018.11.30 |