首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
decodability专题
UVA-644 Immediate Decodability
原题链接: https://vjudge.net/problem/UVA-644 AC代码: #include <bits/stdc++.h>using namespace std;int main(){string a[26];int t = 0;int flag = 0;int cases = 1;while (getline(cin, a[t])){if (a[t][0] =
阅读更多...