Untitled
user_0563559
c_cpp
14 days ago
334 B
1
Indexable
Never
#include <iostream> using namespace std; string greeting(string a){ cout << a << endl; return(a); } string farewell(string b) { cout << b << endl; return(b); } int main() { setlocale(LC_ALL, "Russian"); string a = "Вооу, даров!"; string b = "Пока бро("; greeting(a); farewell(b); }
Leave a Comment