码迷,mamicode.com
首页 > 其他好文 > 详细

1071 小赌怡情

时间:2020-02-24 19:04:17      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:ota   mic   cin   name   return   include   code   http   nbsp   

水题。

#include<iostream>
using namespace std;

int main() {
    int t,k,n1,b,tt,n2;
    cin>>t>>k;
    for(int i = 0; i < k; ++i) {
        cin>>n1>>b>>tt>>n2;
        if(tt > t) {
            printf("Not enough tokens.  Total = %d.\n",t);
        } else {
            if((n1 > n2 && b == 0) || (n1 < n2 && b == 1)) {
                printf("Win %d!  Total = %d.\n",tt,t+=tt);
            } else {
                printf("Lose %d.  Total = %d.\n",tt,t-=tt);
                if(t == 0) {
                    printf("Game Over.\n");
                    break;
                }
            }
        }
    }
    return 0;
}

技术图片

 

1071 小赌怡情

标签:ota   mic   cin   name   return   include   code   http   nbsp   

原文地址:https://www.cnblogs.com/keep23456/p/12357965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!