Server IP : 172.16.15.8 / Your IP : 3.144.40.239 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/mrcoberly/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// File name: hw3.cpp // Author: Rachel Coberly // Instructor: Dr. John Wang // Due date: Wednesday, September 19, 2007 // Compilation: g++ hw3.cpp -o hw3.out // Execution: ./hw3.out // // Goal: This program will calculate the different operations for two positive numbers. // #include <iostream> #include <iomanip> using namespace std; int main() { // 1. Declare Variables float a, b, add, subt, mult, div; string star_line = "******************************"; cout << fixed << showpoint << setprecision (1); // 2. Input cout << star_line << '\n'; cout << "Input a (-1 to quit ): "; cin >> a; while ( a > 0 ) { cout << "Input b: "; cin >> b; // 3. Computing add = a + b; subt = a - b; mult = a * b; div = a / b; // 4. Output cout << "\n\n"; cout << a << "\t+\t" << b << "\t=\t" << add << "\n\n"; cout << a << "\t-\t" << b << "\t=\t" << subt << "\n\n"; cout << a << "\t*\t" << b << "\t=\t" << mult << "\n\n"; cout << a << "\t/\t" << b << "\t=\t" << div << "\n\n"; cout << star_line << endl; cout << "Input a (-1 to quit ): "; cin >> a; } return 0; }