cs201 assignment 1 soloution spring 2021

cs201 assignment 1 soloution spring 2021
CS201 ASSIGNMENT 1 SOLUTION
SPRING 2021
BY WWW.FEARPK.COM
SOLUTION
Note: Do not copy and paste. Please change your id and name and comments properly according to programing rules.
#include <iostream>
using namespace std;
int main()
{
cout<<” —CS201 ASSIGNMENT 1 SOLUTION 1 SPRING 2021—-“<<endl;
cout<<” —Program by MUHAMMAD REYAN—-“<<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 = MC110202087; // remove and enter any student id here (not real)
string name = “CH RAYAN”; // 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;
}