Develop
2003.04.23 09:49
[c++] p.47 연습문제 3번
조회 수 10478 댓글 0
#include<iostream.h>
int main()
{
int x, y, i, result=1;
cout << "Enter a first Number : ";
cin >> x;
cout << "Enter a second Number : ";
cin >> y;
for(i=0 ; i<y ; i++)
{
result *= x;
}
cout << x << "^" << y << " is " << result;
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 라이브러리) 샘플 소스