Untitled
user_0563559
c_cpp
a year ago
334 B
5
Indexable
#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); }
Editor is loading...
Leave a Comment