Develop
2003.04.23 09:50
[c++] p.118 확인학습 5번
조회 수 11067 댓글 0
#include<iostream.h>
class summation{
int num;
long sum;
public:
void set_sum(int n);
void show_sum(){
cout << num << " summed is " << sum << "n";
}
};
void summation::set_sum(int n){
int i;
num=n;
sum=0;
for(i=1;i<=n;i++) sum+=i;
}
summation make_sum(int num){
summation ob;
ob.set_sum(num);
return ob;
}
int main(){
int num;
summation ob;
cout << "Enter a number : ";
cin >> num;
ob = make_sum(num);
ob.show_sum();
return 0;
}
-
[linux] 웹로그분석기(webalizer) 설치 & 팁
-
[linux] 메일서버 세팅정보(sendmail)
-
[linux] APM(apache, php, mysql) + gd 설치순서..
-
[linux] 쉘 환경변수 PS1(프롬프트)
-
[mysql] 쓰레드가 계속 쌓이기 시작하고 사라지지 않을때..
-
[linux] 콘솔/Xwindow 에서 PC스피커 소리 없애기
-
[c] 프로그래밍 ppt, 스킬업 (비트 수업자료)
-
[c++] p.118 확인학습 5번
-
[c++] p.58 연습문제 2번
-
[c++] p.47 연습문제 3번
-
[opengl] 컴퓨터 그래픽스 강의 자료(수업자료)
-
[c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스