本文主要是介绍含有无符号类型的表达式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include "stdafx.h"
#include<iostream>
#include<math.h>
#include<string>
using namespace std;int _tmain(int argc, _TCHAR* argv[])
{for (unsigned u = 10; u >= 0; --u){cout << u << endl;}return 0;
}
上述代码有问题,变量u永远也不会小于0,循环条件一直成立。
这篇关于含有无符号类型的表达式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!