(adsbygoogle = window.adsbygoogle || []).push({});
So the new section open'd and i thought i should do some research.
I found out how to write a sentence in the programming language C++.
Writing a sentence is a input and output method.
Blue is input, and Green is the output.
[COLOR="Blue"]cout << SuperHam";[/COLOR]
// Prints
SuperHam on screen.
To write a paragraph you need to do a line-break.
The code for line-break is \n.
[COLOR="Blue"]cout << Supeham \nIs a newb at C++";[/COLOR]
// Prints
SuperHam
Is a newb at C++
Lets write a little story
[COLOR="Blue"]cout << SuperHam's Story";[/COLOR]
[COLOR="Blue"]cout << One day a SuperHam was born.\nHis SuperPig parents named him, TheSuperHam.";[/COLOR]
[COLOR="Blue"]cout << The End :y:";[/COLOR]
// Prints on screen...
SuperHam's Story
One day a SuperHam was born.
His SuperPig parents named him, TheSuperHam.
The End :y: