Answer to Question #25492 in C++ for shabana
write a program that display your favourite poem use an appropriate espace sequence for the line break.
poem is:
candy is dandy
but liquor is quicker
1
2013-03-05T07:23:05-0500
#include <iostream>
using namespace std;
int main()
{
cout << "candy is dandy\nbut liquor is quicker\n";
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment