Guest User

Untitled

a guest
Nov 18th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. int main(){
  4. //Definicion de variables
  5.  
  6. int a;
  7. int b;
  8. int c;
  9. int solucion,salir;
  10. //Inicialización de variables
  11. a=2;
  12. b=4;
  13. c=-1;
  14. solucion=a+b+c;
  15. std::cout<<"La solucion es:"<<solucion<< std::endl;
  16. std::cout<<"Para seguir, toca cualquier tecla";
  17. std::cin>>salir;
  18. return 0;
  19.  
  20. }
Add Comment
Please, Sign In to add comment