本文主要是介绍UVA-10878 Decode the tape,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原题链接:
https://vjudge.net/problem/UVA-10878
AC代码:
#include <bits/stdc++.h>
using namespace std;
int c[11] = {0, 0, 64, 32, 16, 8, 0, 4, 2, 1,0};
int main()
{char str[20];fgets(str, 21, stdin);while(fgets(str, 21, stdin)&&str[0]!='-'){int ans=0;for (int i = 2; i < strlen(str);i++){if(str[i]=='o'){ans += c[i];}}cout << char(ans);}return 0;
}
淦!这题好**怪
这篇关于UVA-10878 Decode the tape的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!