文章
3
粉丝
319
获赞
0
访问
29.3k
#include<iostream>
#include<iomanip>
#include<string.h>
using namespace std;
int main() {
int time = 0, m, n, a[100], b[100];
char str[100];
while (gets(str)) {
for (int i = 0; (str[i]) != '\0'; i++) {
m = str[i] - 'a';
if (m >= 0 && m < 15) {
a[i] = m / 3;
b[i] = (m + 1) % 3;
if (i == 0) {
switch (b[i]) {
&n...
登录后发布评论
可以修改一下文章,使用代码高亮插件方便大家阅读
可以把重复的部分写成函数的形式缩小代码量