// CST116F2021-Lab2.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include #include using namespace std; // int main() // { // int age = 19; // float shoe_size = 8.5; // int altitude = 0; // char gender = 70; // int weight = 175; // return 0; // } //int main() //{ // char ascii = 67; // cout << ascii << '\n'; // ascii = 43; // cout << ascii << '\n'; // cout << ascii << '\n'; // return 0; //} // //int main() //{ // int days_in_year = 365; // int age = 18; // int age_in_days = days_in_year * age; // cout << "My age in days since my 18th birthday: " // << age_in_days; // return 0; //}; //int main() //{ // float temp = 0; // cout << "Input temperature: "; // cin >> temp; // cout.setf(ios::fixed);; // cout << setprecision(1) << setw(6) << temp; // return 0; //}; //int main() //{ // cout << "Bob"; // cout.width(10); // cout << "3.23"; // cout.width(15); // cout << "Freshman"; // cout.width(30); // cout << "Software Engineering\n"; // // cout << "Jamie"; // cout.width(10); // cout << "0.98"; // cout.width(15); // cout << "Freshman"; // cout.width(30); // cout << "Underwater Basket\n"; // // cout << "Marcus"; // cout.width(10); // cout << "4.00"; // cout.width(15); // cout << "Freshman"; // cout.width(30); // cout << "Management\n"; // // cout << "Phong"; // cout.width(10); // cout << "3.75"; // cout.width(15); // cout << "Junior"; // cout.width(30); // cout << "Encryption\n"; // cout << "Webster"; // cout.width(10); // cout << "2.00"; // cout.width(15); // cout << "Sophomore"; // cout.width(30); // cout << "Wildlife Management\n"; // return 0; //}