Advertisement
Guest User

new

a guest
Aug 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. using namespace std;
  7.  
  8. int main(void)
  9. {
  10.     int edad;
  11.     char oracion[50];
  12.     cout << "Ingresa tu edad " << endl;
  13.     cin >> edad;
  14.     cout << edad << " años" << endl;
  15.     cout << "\n Ingresa una oración "<<endl;
  16.     cin>>oracion;
  17.     //cin.getline(oracion, 40, '\n');
  18.     cout << oracion << endl;
  19.     system("pause");
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement