#include <stdio.h>
void main(){
int x=30,y=-30;
x=x>>3;
y=y>>3;
printf("the result1 is:%d,%d\n",x,y);
x=x>>2;
y=y>>2;
printf("the result2 is:%d,%d\n",x,y);
}
#include <stdio.h>
void main(){
int x=30,y=-30;
x=x>>3;
y=y>>3;
printf("the result1 is:%d,%d\n",x,y);
x=x>>2;
y=y>>2;
printf("the result2 is:%d,%d\n",x,y);
}
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。