You are on page 1of 3

CS201 ASSIGNMENT 1 SOLUTION

SPRING 2021
SOLUTION
#include <iostream>

using namespace std;

int main()
{
cout<<" ---CS201 ASSIGNMENT 1 SOLUTION 1 SPRING
2021----"<<endl;
cout<<" ---Program by VU Daily----"<<endl;
cout<<" "<<endl;

int x,y,Z;
x=2;
y=1;

Z = (x*x)+(2*y*x)-(x/y);
cout<<"After evaluation of given expression the value of z =
"<<Z<<endl;

string ID = "BC";
int id2 = 200205672; // remove and enter any student id here
(not real)
string name = "CH RAHMAN"; // enter your name into my name
int lastdigit;
int Gotnumber;

lastdigit = id2 % 10;


cout<<"--Last digit of VU ID is "<<lastdigit<<endl;
Gotnumber = Z + lastdigit;

// using if else condition


string test;
int n = 1;
if ((lastdigit % 2) == 0)
{
test = "even";
cout<<"I got an "<<test<<" number "<<Gotnumber<<endl;
while (n <= Gotnumber)
{
cout<<"Iteration: "<<n<<endl;
cout<<"My name is "<<name<<endl;
n++;
}
}
else
{
test = " odd";
cout<<"I got an "<<test<<" number "<<Gotnumber<<endl;
while(n <= Gotnumber)
{
cout<<"Iteration: "<<n<<endl;
cout<<"My VU ID is "<<id2<<endl;
n++;
}
}

return 0;
}

You might also like