#include<stdio.h>#defineLAPS_PER_MILE4// #define定义的符号常量constintCURRENT_YEAR=2013;// const定义的符号常量floatmiles_covered;intlaps_run,year_of_birth,current_age;intmain(void){printf("How many laps did you run: ");scanf("%d",&laps_run);printf("Enter your year of birth: ");scanf("%d",&year_of_birth);miles_covered=(float)laps_run/LAPS_PER_MILE;// 使用符号常量current_age=CURRENT_YEAR-year_of_birth;// 使用符号常量printf("\nYou ran %.2f miles.",miles_covered);printf("\nNot bad for someone turning %d this year!\n",current_age);return0;}