josiftepe

Untitled

Jan 13th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int broj = 10;
  7.     double brojot_pi = 3.14159;
  8.     char karakter = 'z';
  9.     cout << broj << endl;
  10.     cout << brojot_pi << endl;
  11.     cout << karakter << endl;
  12.     return 0;
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment