«   2024/12   »
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
more
Archives
Today
Total
관리 메뉴

ITGenerations

[c++] c프로그램을 c++로 수정 2 본문

프로그래밍/c++ 명품프로그래밍

[c++] c프로그램을 c++로 수정 2

ITGenerations 2017. 11. 12. 17:02

//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++ 프로그램 --------------------