티스토리 뷰
- 자연수의 합
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
int i, a, b, sum=0;
cin>>a>>b;
for(i=a; i<b; i++){
cout<<i<<" + ";
sum = sum + i;
}
cout<<i<<" = ";
cout<<sum+i;
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() {
int a, i, sum=1;
cin>>a;
cout<<"1";
for(i=2; i<a; i++){
if(a%i==0){
cout<<" + "<<i;
sum = sum + i;
}
}
cout<<" = ";
cout<<sum;
return 0;
}
'algorithm' 카테고리의 다른 글
[c++] 공백없애기, 올바른 괄호 (0) | 2020.11.27 |
---|---|
나이차이, 나이계산, 숫자만추출 (0) | 2020.11.26 |
[Algorithm] 순환(recursion) 알고리즘(예제) (0) | 2020.05.30 |
[Algorithm] 순환(recursion) 알고리즘 (0) | 2020.05.30 |
[Algorithm] LeetCode 20. Valid Parentheses using Stack (0) | 2020.05.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- server side rendering
- 세마포어
- 최단경로
- javascript
- C++
- client side rendering
- 퀵정렬
- 병행프로세스
- 알고리즘
- 재귀함수
- 교착상태
- 소프트웨어
- 스텍
- 배열
- 인접행렬
- 인접리스트
- BFS
- 구조체
- dfs
- Java
- 클래스
- 이진탐색
- Stack
- 운영체제
- 동적프로그래밍
- 입출력장치
- react
- stackframe
- 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 |
글 보관함