“Przekształcanie sznurka na małą funkcję inbuld w CPP” Kod odpowiedzi

Przekształcanie sznurka na małą funkcję inbuld w CPP

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
   string my_str = "Hello WORLD";

   cout << "Main string: " << my_str << endl;
   transform(my_str.begin(), my_str.end(), my_str.begin(), ::tolower);

   cout << "Converted String: " << my_str;
}
Defeated Dove

Przekształcanie sznurka na małą funkcję inbuld w CPP

#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
cout << "You are lox";
syrym Mansur

Odpowiedzi podobne do “Przekształcanie sznurka na małą funkcję inbuld w CPP”

Pytania podobne do “Przekształcanie sznurka na małą funkcję inbuld w CPP”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu