作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
<分区>
所以这听起来很简单,但我遇到了一些奇怪的行为。
在我的程序中有如下代码:
std::cout << "Would you like to generate a complexity graph or calculate global complexity? (graph/global)\n";
char ans[6];
std::cin >> ans;
if (ans != "global") std::cout << ">>" << ans << "<<" << std::endl;
当我运行我的程序并在系统提示我输入时输入“global”时,程序返回:
>>global<<
为什么 if 语句的计算结果为 true
?
我是一名优秀的程序员,十分优秀!