Problem 1: a. The number is 8. b. The number is x . c. The number is x. d. 3 e. 8 Problem 2: // Name // CS201 HW2 prob. 2 #include using namespace std; int main() { int x=0, y=0; cout<<"please input two integers: "; cin>>x; cin>>y; if(y !=0) cout<<"The remander is "< using namespace std; int main() { int i, x = 0; for ( i = 0; i < 7; i++ ) cout<< "****"<< endl; return 0; } /* **** **** **** **** **** **** **** Press any key to continue */ Problem 4: // Name // CS201 HW2 prob.4 #include using namespace std; int main() { int n1, n2, sqn1, sqn2; cout<<"please input 2 integers: "; cin>>n1>> n2; sqn1=n1*n1; sqn2=n2*n2; if(sqn1==sqn2) cout<<"you input the same number of "<< n1<<" and it's sqaure was "<< sqn1<sqn2) cout< using namespace std; int main() { int n1, n2, n3; cout<<"Please enter three integers: "; cin>>n1>>n2>>n3; if(n1