Untitled

Anonymous
plain_text
11/16/2023 11:57 AM
372 B
12
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