fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int semesterHours;
  6. int studyHours = semesterHours * 3;
  7.  
  8. cout << "I am taking ";
  9. cin >> semesterHours;
  10. cout << " this semester." << " I should spend " << studyHours << " studying each week this semester." << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 4496KB
stdin
12
stdout
I am taking  this semester.  I should spend 98298 studying each week this semester.