Advertisement
LEGEND2004

While solutions

Feb 17th, 2024
838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.94 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define int long long
  5.  
  6. signed main()
  7. {
  8.     ios_base::sync_with_stdio(0);
  9.     cin.tie(0);
  10.  
  11.     // A
  12.     /*
  13.     int a , b;
  14.     cin >> a >> b;
  15.     int i = a;
  16.     while(i <= b){
  17.         cout << i << " ";
  18.         i++;
  19.     }
  20.     */
  21.     // B
  22.     /*
  23.     int n , cnt = 0;
  24.     cin >> n;
  25.     if(n == 0){
  26.         cout << 1;
  27.         return 0;
  28.     }
  29.     while(n){
  30.         cnt++;
  31.         n /= 10;
  32.     }
  33.     cout << cnt;
  34.     */
  35.     // C
  36.     /*
  37.     int n , sum = 0;
  38.     cin >> n;
  39.     n = abs(n);
  40.     while(n){
  41.         sum += n % 10;
  42.         n /= 10;
  43.     }
  44.     cout << sum;
  45.     */
  46.     // D
  47.     /*
  48.     long long n , odd = 0;
  49.     cin >> n;
  50.     while(n){
  51.         odd += n % 2;
  52.         n /= 10;
  53.     }
  54.     cout << odd;
  55.     */
  56.     // E
  57.     /*
  58.     int n , p = 1;
  59.     cin >> n;
  60.     while(n){
  61.         if(n % 10)
  62.             p *= n % 10;
  63.         n /= 10;
  64.     }
  65.     cout << p;
  66.     */
  67.     // F
  68.     /*
  69.     int n , p = 1;
  70.     cin >> n;
  71.     n = abs(n);
  72.     if(n == 0){
  73.         cout << 0;
  74.         return 0;
  75.     }
  76.     while(n){
  77.         if(n % 2 == 0)
  78.             p *= n % 10;
  79.         n /= 10;
  80.     }
  81.     if(p == 1)
  82.         cout << "-1";
  83.     else
  84.         cout << p;
  85.     */
  86.     // G
  87.     /*
  88.     int n , mx = 0;
  89.     cin >> n;
  90.     while(n != 0){
  91.         mx = max(mx , n % 10);
  92.         n /= 10;
  93.     }
  94.     cout << mx;
  95.     */
  96.     // H
  97.     /*int n , mx = 0;
  98.     cin >> n;
  99.     int old = n;
  100.     while(n != 0){
  101.         mx = max(mx , n % 10);
  102.         n /= 10;
  103.     }
  104.     n = old;
  105.     int cnt = 0;
  106.     while(n){
  107.         if(n % 10 == mx)
  108.             cnt++;
  109.         n /= 10;
  110.     }
  111.     cout << cnt;
  112.     */
  113.     // H
  114.     /*
  115.     int n , mx = 0 , cnt = 0;
  116.     cin >> n;
  117.     while(n){
  118.         int d = n % 10;
  119.         if(mx < d){
  120.             mx = d;
  121.             cnt = 0;
  122.         }
  123.         if(mx == d)
  124.             cnt++;
  125.         n /= 10;
  126.     }
  127.     cout << cnt;
  128.     */
  129. }
  130.  
  131.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement