在 C++ 中将所有 ASCII 值与 k 互素的小写字符转换为大写字符
在本教程中,我们将讨论一个程序,该程序将所有 ASCII 值与 k 互素的小写字符转换为大写字符。
为此,我们将提供一个字符串和一个整数值 k。我们的任务是遍历给定的字符串,并将 ASCII 值与给定的整数 k 互素的所有那些字符更改为大写。
示例
#include <bits/stdc++.h> using namespace std; //modifying the given string void convert_string(string s, int k){ int l = s.length(); for (int i = 0; i < l; i++) { int ascii = (int)s[i]; //checking if the value is coprime with k if (ascii >= 'a' && ascii <= 'z'&& __gcd(ascii, k) == 1) { char c = s[i] - 32; s[i] = c; } } cout << s << "\n"; } int main(){ string s = "tutorialspoint"; int k = 3; convert_string(s, k); return 0; }
输出
TuToriAlSPoiNT
广告