#include "stdio.h"main(){ int a,b; b=2; for (a=0;a<6;a++) { b=b*b; } printf ("%d",b);}自己无聊写这玩....但是结果怎么一直是0我把b=b*b改成 b=b*1结果就是2了......谁给我说一下