今天在 看书的时候,看到 了这个神奇的东西.不至于原理是什么,我还没有想清楚.
一个正数n取反的结果是 -(n+1)
/*************************************************************************
> File Name: test2.c
> Author: jukay
> Mail: hellojukay@163.com
> Created Time: 2014年12月16日 星期二 22时49分55秒
************************************************************************/
#include<stdio.h>
int main()
{
int i;
for(i = 0; i < 10111; ++i)
printf("%d : %d \n",i ,~i);
return 0;
}
一个h负数的n取反的结果也是-(n+1)
/*************************************************************************
> File Name: test2.c
> Author: jukay
> Mail: hellojukay@163.com
> Created Time: 2014年12月16日 星期二 22时49分55秒
************************************************************************/
#include<stdio.h>
int main()
{
int i;
for(i = 0; i < 10111; ++i)
printf("%d : %d \n",i ,~i);
return 0;
}