glafyn77

Untitled

Feb 17th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. // ConsoleApplication2.cpp : This file contains the 'main' function. Program execution begins and ends there.
  2. //
  3.  
  4. #include "pch.h"
  5. #include <iostream>
  6. using namespace std;
  7. int main()
  8. {
  9.     int x = 0;
  10.     int y=0;
  11.     int z = 0;
  12.  
  13.    
  14.     cin >> x;
  15.     cin >> y;
  16.     z = x;
  17.     for (int i = 1; i < y; i++)
  18.     {
  19.         z *= x;
  20.     }
  21.     cout << z;
  22. }
Add Comment
Please, Sign In to add comment