Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 魔法っていっていいかな
- meta charset=
- body
- 자료형
- 히라이켄
- 십진수 16진수
- 마법이라고 불러도 좋을까?
- 문자열숫자를 숫자로
- 정수와 상수
- !doctype html
- 異端なスター
- 십진수 8진수
- 아스키코드로 숫자 넣기
- Official髭男dism
- React.js
- 아스키코드
- html
- 백준 8958번
- 백준4344번
- 平井堅
- HEAD
- ㅇ
- 백준 11720
- 오버플로우
Archives
- Today
- Total
갓비니
2020/04/15 코딩 문제 연습 (7단계 / 백준 11720번) C++ 아스키코드 본문
<11720번>
//정답
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include<iostream>
using namespace std;
int main() {
int count;
char num[100] = { 0 };
int sum = 0;
cin >> count >> num;
for (int i = 0; i < count; i++) {
sum += (num[i] - '0');
}
cout << sum;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
//이건 오답
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
|
#include<iostream>
using namespace std;
int main() {
int count;
unsigned int number;
int sum = 0;
cin >> count >> number;
for (int i = 1; i <= count; i++) {
if (number >= 10) {
sum = sum + number % 10;
}
else{
sum = sum + number;
}
number = number / 10;
cout << i <<"차합계 : "<<sum<<" " << i << "차 남은숫자 : " << number<<"\n";
}
cout << sum;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
이런식으로 하면 예제3과 같은 매우 크기가 큰 숫자는 적용시킬 수 없다.
심지어 코드도 더 길다,,,
'Programming > 코딩 문제 풀이' 카테고리의 다른 글
2020/04/17 코딩 문제 연습 (7단계 / 백준 2675번) C++ (0) | 2020.04.17 |
---|---|
★2020/04/16 코딩 문제 연습 ( 7단계 / 백준 10809번) C++ 해결 (0) | 2020.04.16 |
2020/04/14 코딩 문제 연습 (7단계 / 백준 11654번) C++ 아스키코드 char형 숫자를 int로 변환하는 방법 (0) | 2020.04.15 |
2020/04/13 코딩 문제 연습 (7단계 / 백준 1065번) C++ (0) | 2020.04.13 |
2020/04/12 코딩 문제 연습 (7단계 / 백준 4673번, 생성자와 셀프넘버) C++ (0) | 2020.04.13 |