Project: Quick Calculations

Write a program that calculates the result of:

  • Your age*12 (months)

  • Number of weeks in a year (52*7)

  • The remainder of 17 divided by 4

Project: Quick Calculations

Write a program that calculates the result of:

  • Your age*12 (months)

  • Number of weeks in a year (52*7)

  • The remainder of 17 divided by 4

C++
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}