将鞋码转换为英寸

#include <stdio.h>

#define ADJUST 7.31              // one kind of symbolic constant

int main(void){
    const double SCALE = 0.333;  // another kind of symbolic constant
    double shoe, foot;
    shoe = 9.0;
    foot = SCALE * shoe + ADJUST;
    printf("Shoe size (men's)    foot length/n");
    printf("%10.1f %15.2f inches/n", shoe, foot);

    return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266705.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论