Codeforces 1480A. Yet Another String Game (阅读理解题)
生活随笔
收集整理的這篇文章主要介紹了
Codeforces 1480A. Yet Another String Game (阅读理解题)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題意
解題思路
C++ Code
#include <bits/stdc++.h> using namespace std;int main() {ios::sync_with_stdio(false);int t;string s;cin >> t;while (t--) {cin >> s;for (int i = 0; i < s.length(); ++i) {if (i & 1) {if (s[i] == 'z')putchar('y');elseputchar('z');} else {if (s[i] == 'a')putchar('b');elseputchar('a');}}putchar('\n');}return 0; }總結
以上是生活随笔為你收集整理的Codeforces 1480A. Yet Another String Game (阅读理解题)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows 10 开启全盘瞬间索引功
- 下一篇: Codeforces 1480B. Th