Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
using namespace std; int main() { // Good variable name int minutesPerHour = 60; // OK, but not so easy to understand what m actually is int m = 60; cout << minutesPerHour << "\n"; cout << m; return 0; }
60
60