引用第1楼朱颜华发于2006-11-16 19:15发表的:左移3位再加本身
#include "stdio.h"main(){int a=3;int temp;temp=a<<3+a;printf("%d,%d",a,temp);getch();}