Ola_Imiolczyk

Zad2

Oct 30th, 2020 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6.  
  7. {
  8.  
  9. int a=10;
  10. char b='z';
  11. float c=3.14;
  12. double d=3.1479;
  13. bool e=true;
  14. string f="Programowanie";
  15.  
  16.  
  17.  
  18.     cout << "Wartosc zmiennej a wynosi "<<a<< endl;
  19.     cout << "Wartosc zmiennej b wynosi "<<b<< endl;
  20.     cout << "Wartosc zmiennej c wynosi "<<c<< endl;
  21.     cout << "Wartosc zmiennej d wynosi "<<d<< endl;
  22.     cout << "Wartosc zmiennej e wynosi "<<e<< endl;
  23.     cout << "Wartosc zmiennej f wynosi "<<f<< endl;
  24.  
  25.   return 0;
  26. }
  27.  
Add Comment
Please, Sign In to add comment