Develop

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

by hooni posted Apr 23, 2003
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
#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;