Код: Выделить всё
#include <iostream>
#include <string>
int main() {
int number = 42;
std::string str = std::to_string(number);
std::cout << "Строка: " << str << std::endl;
return 0;
}
Код: Выделить всё
#include <iostream>
#include <string>
int main() {
int number = 42;
std::string str = std::to_string(number);
std::cout << "Строка: " << str << std::endl;
return 0;
}