Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. void main() {
  4.     int x;
  5.     double d;
  6.     char c;
  7.     bool tf;
  8.     x = 100;
  9.     d = 12.21;
  10.     c = 'A';
  11.     tf = true;
  12.     std :: cout << "X=" << x << "\n";
  13.     std :: cout << "D=" << d << "\n";
  14.     std :: cout << "C=" << c << "\n";
  15.     std :: cout << "TF=" << tf << "\n";
  16.     std :: system("pause")
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement