Advertisement
LEGEND2004

char, string

Mar 30th, 2024
821
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.01 KB | None | 0 0
  1. #pragma GCC optimize("O3")
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4.  
  5. #define int long long
  6. #define double long double
  7. #define fastio ios_base::sync_with_stdio(0); cin.tie(0)
  8.  
  9. signed main()
  10. {
  11.     fastio;
  12. /*
  13.     int
  14.     double
  15.     bool ok = true; // 1 0
  16.     */
  17.     // Menim
  18.     // M
  19.     // e
  20.     // n
  21.     // i
  22.     // m
  23.     // nasa2011
  24.     /*
  25.     cout << "Hello\nCelal\n" << "\n";
  26.  
  27.     char c = 'A';
  28.     cout << c << '\n'; // A
  29.     string s = "Hello\nYusif";
  30.     cout << s << '\n';
  31.     */
  32.     /*
  33.     string s;
  34.     cin >> s;
  35.     bool ok = true;
  36.     for(int i = 0; i < s.size(); i++){
  37.         if(s[i] >= '0' && s[i] <= '9')
  38.             continue;
  39.         ok = false;
  40.     }
  41.     if(ok)
  42.         cout << "Yes";
  43.     else
  44.         cout << "No";
  45.     */
  46.     /*
  47.     string a , b;
  48.     cin >> a >> b;
  49.     a += b;
  50.     cout << a;*/
  51.     /*
  52.     string s = "c9aAbB0 ";
  53.     sort(s.begin() , s.end());
  54.     cout << s; //  09ABabc
  55.     */
  56.     /*
  57.     char c = 'C';
  58.     cout << c - 'A';
  59.     */
  60. }
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement