#does anybody know how to make this program?

6 messages · Page 1 of 1 (latest)

flat star
#
format Input 
enter string : 'hello'
format output
hello
woven jackalBOT
#

When your question is answered use !solved to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.

wanton badger
#

;compile | 'hello'

#include <iostream>

int main()
{
  std::string input;
  std::getline(std::cin, input);

  std::cout << input << std::endl;
}
light lionBOT
#
Program Output
'hello'
woven jackalBOT
#

This question thread is being automatically closed. If your question is not answered feel free to bump the post or re-ask. Take a look at !howto ask for tips on improving your question.