两个无符号数相减 可以得到负数

#include <iostream>
using namespace std;
unsigned int i1=3;
unsigned int i2=6;
int i3=i1-i2;
cout<<i3<<endl; //-3
原文地址:https://www.cnblogs.com/xaf-dfg/p/3818433.html