티스토리 뷰
- 나이차이
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
//freopen("input.txt", "rt", stdin);
int n, i, a, max=-2147000000, min=2147000000;
cin>>n;
for(i = 1; i <= n; i++){
cin>>a;
if(a>max){
max=a;
}
if(a<min){
min=a;
}
}
cout<<max-min;
return 0;
}
- 나이계산
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
//freopen("input.txt", "rt", stdin);
char a[20];
int year, age;
scanf("%s", &a);
if(a[7]=='1' || a[7]=='2'){
year = 1900 + ((a[0]-48)*10+(a[1]-48));
} else {
year = 2000 + ((a[0]-48)*10+(a[1]-48));
}
age = 2019 - year + 1;
printf("%d ", age);
if(a[7]=='1' || a[7]=='3'){
printf("M\n");
} else {
printf("W\n");
}
return 0;
}
- 숫자만 추출
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
//freopen("input.txt", "rt", stdin);
char a[100];
int res=0, cnt=0, i;
scanf("%s", &a);
for(i=0; a[i]!='\0'; i++){
if(a[i]>=48 && a[i]<=57){
res = res*10+(a[i]-48);
}
}
printf("%d\n", res);
for(i=1; i<=res; i++){
if(res%i==0){
cnt++;
}
}
printf("%d\n", cnt);
return 0;
}
'algorithm' 카테고리의 다른 글
[c++] 모두의 약수 (0) | 2020.11.28 |
---|---|
[c++] 공백없애기, 올바른 괄호 (0) | 2020.11.27 |
자연수의 합, 진약수의 합 (0) | 2020.11.25 |
[Algorithm] 순환(recursion) 알고리즘(예제) (0) | 2020.05.30 |
[Algorithm] 순환(recursion) 알고리즘 (0) | 2020.05.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 배열
- 병행프로세스
- 알고리즘
- stackframe
- 퀵정렬
- 소프트웨어
- 재귀함수
- Stack
- 클래스
- 동적프로그래밍
- C
- Java
- 운영체제
- 인접리스트
- 스텍
- dfs
- javascript
- 인접행렬
- 구조체
- 세마포어
- 입출력장치
- BFS
- 최단경로
- server side rendering
- 교착상태
- react
- 이진탐색
- client side rendering
- C++
- 자료구조
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함