Advertisement
Guest User

C++

a guest
Sep 9th, 2011
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream.h>
  2. void main()
  3. {
  4. int stev1, stev2, produkt;
  5.  
  6. cout<<"Vpisi 1. stevilo : ";
  7. cin>>stev1;
  8. cout<<"Vpisi 2. stevilo : ";
  9. cin>>stev2;
  10.  
  11. produkt = stev1 * stev2;
  12. cout<<"Produkt "<<stev1<<" X "<<stev2 <<" = "<<produkt<<endl;
  13.  
  14. cin.get();
  15. cin.get();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement