Untitled
unknown
plain_text
2 years ago
278 B
8
Indexable
#include <iostream>
using namespace std;
void greeting() {
cout << "привет,чувачелло!!";
}
void farewell() {
cout << "пока,чувак :(";
}
int main()
{
setlocale(LC_ALL, "russian");
greeting();
cout << "\n";
farewell();
}
Editor is loading...
Leave a Comment