#include using namespace std; int main() { /* Part 1 - printin the sum of the first 200 even numbers. * Start from 0. You can have one variable for the sum, one for the * current number being added to the sum and another for the counter.*/ int sum=0; int count =1; int num =0; while(count <=200) { sum = sum + num; num = num + 2; //next even number count = count + 1; } cout << "The sum of the first 200 even numbers is : "<> x; cout<<"Enter the exponent: "; cin>>n; count = 1; //reusing the counter. while(count <= n) { ans=ans*x; count++; } cout<