Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int a; //-2e9...2e9
  9. long long b; //-8e18..8e18
  10. short c; //???
  11. unsigned int d; //0..4e9
  12. unsigned long long e; //0..1e19
  13. char f = 'a';
  14. bool n; //0..1
  15. string s = "fefefe";
  16. s += "frfrr";
  17. s += "frfrfr";
  18. for (int i = 0; i < s.size(); ++i)
  19. {
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement