mã hóa xâu dưới dạng "a"->"z" v; "b=y"..... c++ nha

2 câu trả lời

#include <bits/stdc++.h>
using namespace std;
ifstream fi("enco.inp");
ofstream fo("enco.out");
string s;
long i,k;
int main()
{
    getline(fi,s);
    for(i=0;i<s.length();i++)
    {
        if(s[i]>=65&&s[i]<=90)
        {
            k=s[i]-65;
            fo<<char(90-k);
        }
        else fo<<s[i];
    }
    return 0;
}

#include <bits/stdc++.h>
using namespace std;
int main()
{
   string s;
   getline(cin,s);
   for (int i=0; i<=s.length()-1; i++)
    cout<<(char)(26-((int)s[i]-97+1)+97);
}

Câu hỏi trong lớp Xem thêm