// Lab2Ansari.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include #include using namespace std; using std::ios; int main() { } /* * 112-115 5.9 #5 float money = 123.45; float raise; cout << "You have $"; cout << money << endl; cout << "enter percent raise: "; cin >> raise; money = money * raise; cout << "After your raise you have $"; cout << money << endl; */ /* * Page 100 #1 float personTemp; cout << "Enter your temperature: " << endl; cin >> personTemp; cout.setf(ios::fixed); cout << setw(6) << setprecision(1) << personTemp << endl; */ /* int age = 18; int daysInYears = 365; cout << age * daysInYears; */ //char ascii = 67; //cout << ascii << '\n'; //ascii = 43; //cout << ascii << '\n'; //cout << ascii << '\n'; //return 0;