+ 2
write a program that asks the user;
"do you want to use this program?(y/n)" if the user says yes,then the program asks "are you really sure you want to use this program?"(y/n) if the user says "n" it terminates,otherwise,it prints again the message, are you really really sure you want to use this program?(y,n), and so on every time adding "really"
1 Respuesta
0
#include<string>
#include<iostream>
using namespace std;
int main()
{
string c="do you want to use this program?(y/n)";
cout<<c;
cin>>c;
if (c=="y"){
cout<<"okay";
}
else{
string first="are you ";
string second="really ";
string third="sure you do not want to use this program?(y/n)";
string full=first+second+third;
while(true){
cout<<full;
cin>>full;
if (full=="n"){
break;
}
else{
second+="really ";
full=first+second+third;
}
}
}
return 0;
}