Advertisement
Guest User

tediprva

a guest
Feb 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5.     int kolicina=24;
  6.     float cena=12.5;
  7.     cout<<"Iminja:"<<endl;
  8.     cout<<"Kolicina"<<endl;
  9.     cout<<"Cena"<<endl;
  10.     cout<<" "<<endl;
  11.     cout<<"Vrednosti:"<<endl;
  12.     cout<<kolicina<<endl;
  13.     cout<<cena<<endl;
  14.     cout<<" "<<endl;
  15.     cout<<"Izvestaj:"<<endl;
  16.     cout<<"Kolicina = "<<kolicina<<" Cena= "<<cena;
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement