Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

ITP QUIZ

Abdullah Khan Raja


BCS231095
 Q#1

#include<iostream>
using namespace std;
int main()
{
float a =2.0
float b = 3.0
float c = 4.0
float d = 5.0
int Num2 = 10
cout << a * (b - c / d) + ++Num2 << endl;
return 0

}
 Q2
#include<iostream>
using namespace std;
int main()
{
cout << "ENTER 4 DIGITS OF A NUMBER" << endl;
int a;
int b ;
int c;
int d;
cin >> a;
cin >> b;
cin >> c;
cin >> d;
cout <<"a_b_c_d"<<endl;
return 0;
}

You might also like