⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 458 decoder.cpp

📁 UVA Online Judge solutions to the problems
💻 CPP
字号:
#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
          string s;
          while(cin>>s)
          {
                       int i;
                       for(i=0;i<s.length();i++)
                       cout<<char((int)s[i]-10);
                       cout<<endl;
          }
system("pause");
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -