C语言for循环实例 C语言for循环实例 C语言for循环实例 C语言for循环实例 // postage.c -- first-class postage rates #include <stdio.h> int main(void) { const int FIRST_OZ = 46; // 2013 rate const int NEXT_OZ = 20; // 2013 rate int ounces, cost; printf(" ounces cost\n"); for (ounces=1, cost=FIRST_OZ; ounces <= 16; ounces++, cost += NEXT_OZ) printf("%5d $%4.2f\n", ounces, cost/100.0); return 0; } C语言for循环实例 C语言for循环实例