#include <iostream> using namespace std; int main() { if(sizeof(int)> -1) cout<<"ok"; else cout<<"not ok"; return 0; }
int的大小不是应该是4吗,它应该大于-1。
c++
c++ ×1