解题思路:
不是最好的写法。
参考代码:
#include<bits/stdc++.h> #define Inf 0x3F3F3F3F using namespace std; char Poke[][3] = { "","A","2","3","4","5","6","7","8","9","10","J","Q","K" }; char Joke_key; int point(char ch[]) { if (ch[strlen(ch) - 1] == Joke_key) return Inf; else { ch[strlen(ch) - 1] = '\0'; for (int i = 1; i <= 13; i++) if (!strcmp(ch, Poke[i])) return i; } return -1; } int main() { int num; cin >> num; cin.get(); char Playst[3], Playnd[3]; while (num--) { cin >> Joke_key; cin >> Playst >> Playnd; if (point(Playst) > point(Playnd)) cout << "YES" << endl; else cout << "NO" << endl; } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:654 |
C语言程序设计教程(第三版)课后习题8.2 (Java代码)浏览:2287 |
C语言训练-立方和不等式 (C语言代码)浏览:779 |
蓝桥杯历届试题-九宫重排 (C++代码)浏览:2812 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:443 |
最小公倍数 (C语言代码)浏览:894 |
打水问题 (C语言代码)浏览:1148 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:628 |
母牛的故事 (C语言代码)浏览:594 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:592 |