HDOJ5551 Huatuo's Medicine

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5551

题目大意:。。。

题目思路:乱搞?模拟?

 1 #include <stdio.h>
 2 void solve(int T){
 3     int n;
 4     scanf("%d",&n);
 5     printf("Case #%d: %d
",T,2*(n-1)+1);
 6     return ;
 7 }
 8 int main(){
 9     int T;
10     scanf("%d",&T);
11     for(int i=1;i<=T;i++) solve(i);
12 }
原文地址:https://www.cnblogs.com/as3asddd/p/6071907.html