标签:style http io ar sp on amp c line
题目链接:http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1111
这是道简单的数学题。
<span style="font-size:18px;">#include<stdio.h> int main() { int t,z,d;; float x,y,k,s; scanf("%d",&t); int i; while (t--) { scanf("%f%f%d",&x,&y,&z); k=(x+y)/3; if (x-k>k) s=z; else s=(x/k-1)*z; printf("%0.0f\n",s); } return 0; } </span>
CSU OJ 三家人(湖南省第八届大学生计算机程序设计竞赛)
标签:style http io ar sp on amp c line
原文地址:http://blog.csdn.net/yzj577/article/details/39029491