|
1
2
3
4
5
6
7
8
9
10
11
12
|
#include<stdio.h>int main(){ unsigned char i=7; int j=0; for(;i>0;i-=3) { ++j; } printf("%d\n",j); return 0;} |
原文:http://www.cnblogs.com/fenglongyu/p/7624452.html