运行 ❯
获取您自己的
网站
×
更改方向
更改主题,暗/亮
转至 Spaces
#include <iostream> 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