Contents

Develop
2003.04.23 09:49

[c++] p.47 연습문제 3번

Views 11325 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
#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;

?

  1. [linux] 웹로그분석기(webalizer) 설치 & 팁

    Date2003.04.23 CategorySystem/OS Byhooni Views16009
    Read More
  2. [linux] 메일서버 세팅정보(sendmail)

    Date2003.04.23 CategorySystem/OS Byhooni Views18646
    Read More
  3. [linux] APM(apache, php, mysql) + gd 설치순서..

    Date2003.04.23 CategorySystem/OS Byhooni Views20061
    Read More
  4. [linux] 쉘 환경변수 PS1(프롬프트)

    Date2003.04.23 CategorySystem/OS Byhooni Views14607
    Read More
  5. [mysql] 쓰레드가 계속 쌓이기 시작하고 사라지지 않을때..

    Date2003.04.23 CategoryDatabase Byhooni Views13999
    Read More
  6. [linux] 콘솔/Xwindow 에서 PC스피커 소리 없애기

    Date2003.04.23 CategorySystem/OS Byhooni Views17502
    Read More
  7. [c] 프로그래밍 ppt, 스킬업 (비트 수업자료)

    Date2003.04.23 CategoryDevelop Byhooni Views9440
    Read More
  8. [c++] p.118 확인학습 5번

    Date2003.04.23 CategoryDevelop Byhooni Views11934
    Read More
  9. [c++] p.58 연습문제 2번

    Date2003.04.23 CategoryDevelop Byhooni Views17406
    Read More
  10. [c++] p.47 연습문제 3번

    Date2003.04.23 CategoryDevelop Byhooni Views11325
    Read More
  11. [opengl] 컴퓨터 그래픽스 강의 자료(수업자료)

    Date2003.04.23 CategoryDevelop Byhooni Views22046
    Read More
  12. [c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스

    Date2003.04.23 CategoryDevelop Byhooni Views11325
    Read More
Board Pagination Prev 1 ... 90 91 92 93 94 95 96 97 98 99 Next
/ 99