Coder

舒心、快乐,比什么都重要

1076 Wifi密码 (15 分)

// 思路是网上以一位大神的,特简单直接采用字符串,判断长度,还有最后一个元素是否T,便可通过ASCll输出数字;
#include <iostream> #include <string> using namespace std; string s; int main(){ while (cin >> s){ if (s.size() == 3 && s[2] == 'T') cout << s[0] - 'A' + 1; } cout << endl; return 0; }

 

posted @ 2019-04-20 21:18  H123K  阅读(201)  评论(0编辑  收藏  举报