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.27 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. int main(){
  4. int a;
  5. int b;
  6. int c;
  7. int solucion,salir;
  8. a=2;
  9. b=4;
  10. c=1;
  11. solucion=a+b+c;
  12. std::cout<<"La solucion es:"<<solucion<<std::endl;
  13. std::cout<<"Para seguir pulsa cualquier tecla";
  14. std::cin>>salir;
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment