Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

แปลงอักขระตัวพิมพ์เล็กทั้งหมดเป็นตัวพิมพ์ใหญ่โดยมีค่า ASCII ร่วมกับ k ใน C++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมที่จะแปลงอักขระตัวพิมพ์เล็กทั้งหมดเป็นตัวพิมพ์ใหญ่ซึ่งค่า ASCII เป็น co-prime กับ k

สำหรับสิ่งนี้ เราจะได้รับสตริงและค่าจำนวนเต็ม k งานของเราคือการสำรวจผ่านสตริงที่กำหนดและเปลี่ยนเป็นตัวพิมพ์ใหญ่อักขระทั้งหมดที่มีค่า ASCII เป็น co-prime กับจำนวนเต็มที่กำหนด 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