Pabon_SEC

A Multiplication Game

Mar 21st, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     long long n,p,stan;
  8.  
  9.     while(scanf("%lld",&n)==1)
  10.     {
  11.         stan = 0;
  12.  
  13.         p = 1;
  14.  
  15.         while(1)
  16.         {
  17.             p*=9;
  18.  
  19.             if(p>=n)
  20.             {
  21.                 stan = 1;
  22.                 break;
  23.             }
  24.  
  25.             p*=2;
  26.  
  27.             if(p>=n)
  28.             {
  29.                 stan = 0;
  30.                 break;
  31.             }
  32.         }
  33.  
  34.         if(stan)
  35.         {
  36.             printf("Stan wins.\n");
  37.         }
  38.         else
  39.         {
  40.             printf("Ollie wins.\n");
  41.         }
  42.     }
  43.  
  44.     return 0;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment