Untitled
Anonymous
c_cpp
11/16/2023 2:14 PM
340 B
25
Indexable
#include <iostream>
void greeting() {
std::cout << "привет, чувак\n";
return;
}
void farewell() {
std::cout << "пока, чувак\n";
return;
}
int main() {
setlocale(LC_ALL, "Russian");
greeting();
farewell();
}Editor is loading...
Leave a Comment