Pabon_SEC

Baby Me

Jun 10th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.07 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. char s[20];
  6.  
  7. int main()
  8. {
  9.     int len,i,test,tc,num1,num2;
  10.  
  11.     scanf("%d",&test);
  12.  
  13.     getchar();
  14.  
  15.     for(tc=1; tc<=test; tc++)
  16.     {
  17.         gets(s);
  18.  
  19.         len = strlen(s);
  20.  
  21.         num1 = num2 = 0;
  22.  
  23.         bool flag = true;
  24.  
  25.         for(i=0; i<len; i++)
  26.         {
  27.             if(isdigit(s[i]) && flag)
  28.             {
  29.                 while(isdigit(s[i]))
  30.                 {
  31.                     num1 = num1*10+(s[i]-48);
  32.  
  33.                     i++;
  34.                 }
  35.  
  36.                 flag = false;
  37.             }
  38.  
  39.             if(!flag)
  40.             {
  41.                 while(isdigit(s[i]))
  42.                 {
  43.                     num2 = num2*10+(s[i]-48);
  44.  
  45.                     i++;
  46.                 }
  47.             }
  48.         }
  49.  
  50.         int num = num1*.5+num2*.05;
  51.  
  52.         double ans = num1*.5+num2*.05;
  53.  
  54.         if(num==ans)
  55.         {
  56.             printf("Case %d: %d\n",tc,num);
  57.         }
  58.         else
  59.         {
  60.             printf("Case %d: %g\n",tc,ans);
  61.         }
  62.     }
  63.  
  64.     return 0;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment