运行 ❯
建立您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 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