Untitled

Anonymous
plain_text
11/15/2023 6:30 PM
400 B
16
Indexable
#include <iostream>
#include <string>

using namespace std;

void greeting() {
	cout << "привет, чувак";
}
void farewell() {
	cout << "пока, чувак";
}


int main() {
	setlocale(LC_ALL, "Russian");
	string x;
	cin >> x;
	if (x == "greeting") {
		greeting();
	}
	else farewell();
}
Editor is loading...
Leave a Comment