ITGenerations
[c++] c프로그램을 c++로 수정 2 본문
//p90, n12, c 프로그램을 c++ 프로그램으로 수정
// --------- c 프로그램 --------------------
/*
#include <stdio.h>
int sum();
int mian()
{
int n = 0;
printf("끝 수 입력 >>");
scanf("%d", &n);
printf("1~%d 합은 %d", n, sum(1, n));
return 0;
}
int sum(int a, int b)
{
int k, res = 0;
for (k = a; k <= b; k++)
{
res += k;
}
return res;
}
*/
// --------- c 프로그램 --------------------
// --------- c++ 프로그램 --------------------
/*
#include <iostream>
using namespace std;
int sum(int a, int b);
int main()
{
int n = 0;
cout<<"끝 수 입력 >>";
cin>> n;
cout << "1~ "<<n <<" 합은 "<<sum(1,n)<<endl;
return 0;
}
int sum(int a, int b)
{
int k, res = 0;
for (k = a; k <= b; k++)
{
res += k;
}
return res;
}
*/
// --------- c++ 프로그램 --------------------
'프로그래밍 > c++ 명품프로그래밍 ' 카테고리의 다른 글
[c++] p143/1. main()의 실행 결과가 다음과 같도록 Tower 클래스를 작성하라 (0) | 2017.11.22 |
---|---|
[c++] 영문 텍스트를 입력받아 알파벳 히스토그램을 그리는 블라블라 (0) | 2017.11.14 |
[c++] c프로그램을 c++프로그램으로 수정 (0) | 2017.11.12 |
[c++] 문자열을 하나 입력받고 문자열의 부분 문자열을 다음과 같이 출력하는 프로그램을 작성하라 (0) | 2017.11.12 |
[c++] 이름, 주소, 나이를 입력받아 다시 출력하는 프로그램 (0) | 2017.11.12 |