POJ_1004_Financial Management

来源:互联网 发布:武术软件 编辑:程序博客网 时间:2024/04/30 17:24
#include<stdio.h>int main(){int i = 12;double s=0.0, n;while (i--){scanf("%lf", &n);s += n;}printf("$%.2lf\n", s / 12);return 0;}

0 0