摘要: A - Blackjack #include <bits/stdc++.h> int main() { int a, b, c; scanf("%d%d%d", &a, &b, &c); a += b + c; if (a >= 22) puts("bust"); else puts("win"); 阅读全文
posted @ 2019-12-20 23:44 Mrzdtz220 阅读(402) 评论(0) 推荐(0) 编辑