fork download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std; // consider removing this line in serious projects
  4.  
  5. int main() {
  6. cout<<"The C++14 String And Math Program."<<endl;
  7. char fun[80] = "Hello America, Lets Have A Good Day!";
  8. cout<<"Fun "<<fun<<endl;
  9. cout<<"The Addition Problem Section."<<endl;
  10. int x = 25;
  11. int y = 25;
  12. int z = (x + y);
  13. cout<<"X "<<x<<" Y "<<y<<" Z "<<z<<endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 5296KB
stdin
1
2
10
42
11
stdout
The C++14 String And Math Program.
Fun Hello America, Lets Have A Good Day!
The Addition Problem Section.
X 25 Y 25 Z 50