Untitled
user_5811307
plain_text
12 days ago
254 B
0
Indexable
Never
#include <iostream> using namespace std; void greeting() { cout << "привет, чувак"<< endl; } void farewell() { cout << "пока, чувак"<< endl; } int main() { setlocale(LC_ALL, "Russian"); greeting(); farewell(); }
Leave a Comment