josiftepe

Untitled

Oct 23rd, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. #include <iostream>
  2. // input output stream
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8.     // int = integer: -infinity,  -10, -5, -2, 0, 1, 2 ,3 ... infinity
  9.     // float - decimal number
  10.     // double - decimal number
  11.     // string - word
  12.     // char - character od azbukata
  13.     int broj = 10;
  14.     float f = 0.05;
  15.     double d = 9.18;
  16.     string s = "zdravo";
  17.     char c = 'c';
  18.    
  19.     //cout: command output: print something on screen
  20.     //cout << name_of_variable << endl;
  21.     // endl : end of line
  22.     cout << broj << endl;
  23.    
  24.     return 0;
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment