Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active September 3, 2019 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ec20c22be0921c62dd3c29928bd2dcb7 to your computer and use it in GitHub Desktop.
Save parzibyte/ec20c22be0921c62dd3c29928bd2dcb7 to your computer and use it in GitHub Desktop.
#include <iostream>
// https://parzibyte.me/blog/2019/06/19/namespaces-cpp-using-namespace/
using namespace std;
int main() {
int edad = 0;
cout << "Escribe tu edad: \n";
cin >> edad;
cout << "Tu edad es " << edad;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment