how to get to...hellohki2020 github
#include <iostream>
#include <cstring>
#include <algorithm>
#include <iterator>
//käännä takaperin string
//numeroita
//string
//
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
string reversestring(string &s){ //&s viittaus
string reverse(s.rbegin(), s.rend());
return reverse;
}
int main() {
string str_name = "name2";
do {
cout << "Anna numero 5";
cout << "From Pertteli Aliens 1986 Movie, hint:" << reversestring(str_name) << endl;
cin >> str_name;
} while(str_name !="name2");
return 0;
}
//Aliens 1986 1:12:00 wlash wlash wlash - unohdit antaa kissalles ruokaa
//You don't have to conceive me, I am here already 1:13:00 Aliens 1986
//Why don't you put her on charge? 1:15:00 hand wave Aliens 1986
Kommentit
Lähetä kommentti