- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
#include <iostream>
#include <string>
int main()
{
std::cout << "Купи слона!" << std::endl;
while(true)
{
std::string temp;
std::getline(std::cin, temp);
std::printf("Все говорят: \"%s\", а ты купи слона!\n", temp.c_str());
}
}
Комментарии (0) RSS