#include <stdio.h> main(){ int i,j; for(i=3;i>=1;i--){ for(j=3;j<=2;j++)//j=3第一次就跳出第二重循环了 printf("%d",i+j); printf("\n"); } }