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\n",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 }

 

posted @ 2016-11-16 22:53  as3asddd  阅读(120)  评论(0编辑  收藏  举报