Advertisement
Majus2137

Zad1

Oct 26th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int zmienna = 12;
  8.     float x = 0.1;
  9.     double y = 0.123123;
  10.     char znak = 'z';
  11.     string imie = "Piotrek";
  12.     bool log = 1;
  13.  
  14.     cout << zmienna << endl;
  15.     cout << x << endl;
  16.     cout << y << endl;
  17.     cout << znak << endl;
  18.     cout << imie << endl;
  19.     cout << log << endl;
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement