Untitled
unknown
plain_text
2 years ago
300 B
10
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