甜蜜谎言for循环嵌套运用
作者:互联网
#include
#include <Windows.h>
using namespace std;
int main(void) {
int h; //时间
h = 0;
//1小时 60分钟 60秒 100毫秒
for (int j=1; j<=1; ++j) {
for (int j=1; j<=60; ++j) {
for (int j=1; j<=60; ++j) {
for (int j=1; j<=100; ++j) {
++h;
}
}
}
}
cout << "一个人小时等于" << h << "毫秒" << endl;
system("pause");
return 0;
}
//循环嵌套 计算一个小时等于多少毫秒
标签:毫秒,谎言,甜蜜,60,嵌套,int,循环,include 来源: https://blog.csdn.net/weixin_45399178/article/details/101315291