Como hacer esto en c++?
Publicado por Jose (1 intervención) el 26/01/2018 18:51:26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**********************************************************************
* Main will not do much here. First it will display Peter's question,
* then it will display the Lord's answer
***********************************************************************/
int main()
{
// ask Peter's question
questionPeter();
// the first part of the Lord's response
cout << "Jesus saith unto him, I say not unto thee, Until seven\n";
cout << "times: but, Until " << responseLord() << ".\n";
return 0;
Valora esta pregunta
0