Advertisement
newb_ie

Page 3

Aug 16th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.87 KB | None | 0 0
  1. /*
  2. ======================
  3. [     ___T_          ]
  4. [    | 6=6 | =>HI :-)]
  5. [    |__o__|         ]
  6. [ >===]__o[===<      ]
  7. [     [o__]          ]
  8. [      .".           ]
  9. [      |_|           ]
  10. [                    ]
  11. ======================
  12.  */
  13.  
  14. #include<bits/stdc++.h>
  15. using namespace std;
  16. using lli = int64_t;
  17. void print(){
  18.     for(int i = 1; i <= 10; i++){
  19.         cout << i << " ";
  20.     }
  21.     for(int i = 9; i >= 1; i--){
  22.         cout << i << " ";
  23.     }
  24. }
  25. int main(){
  26.      ios::sync_with_stdio(false);
  27.      cin.tie(nullptr);
  28.      cout.tie(nullptr);
  29.      print();
  30. }
  31.  
  32.  
  33. /*
  34. ======================
  35. [     ___T_          ]
  36. [    | 6=6 | =>HI :-)]
  37. [    |__o__|         ]
  38. [ >===]__o[===<      ]
  39. [     [o__]          ]
  40. [      .".           ]
  41. [      |_|           ]
  42. [                    ]
  43. ======================
  44.  */
  45.  
  46. #include<bits/stdc++.h>
  47. using namespace std;
  48. using lli = int64_t;
  49. const int maxN = 10000;
  50. int occurence[maxN];
  51. void print_duplicates(int input[],int n){
  52.     for(int i = 1; i <= n; i++){
  53.         occurence[input[i]] += 1;
  54.         if(occurence[input[i]] == 2){
  55.             cout << input[i] << " ";
  56.         }
  57.     }
  58. }
  59. int main(){
  60.      ios::sync_with_stdio(false);
  61.      cin.tie(nullptr);
  62.      cout.tie(nullptr);
  63.      int n;
  64.      cin >> n;
  65.      int input[n + 1];
  66.      for(int i = 1; i <= n; i++){
  67.          cin >> input[i];
  68.      }
  69.      print_duplicates(input,n);
  70. }
  71.  
  72.  
  73. /*
  74. ======================
  75. [     ___T_          ]
  76. [    | 6=6 | =>HI :-)]
  77. [    |__o__|         ]
  78. [ >===]__o[===<      ]
  79. [     [o__]          ]
  80. [      .".           ]
  81. [      |_|           ]
  82. [                    ]
  83. ======================
  84.  */
  85.  
  86. #include<bits/stdc++.h>
  87. using namespace std;
  88. using lli = int64_t;
  89. #define filein freopen ("in.txt", "r", stdin)
  90. void print_file(){
  91.     filein;
  92.     int n;
  93.     int sum = 0;
  94.     while(cin >> n){
  95.         sum += n;
  96.     }
  97.     cout << sum;
  98. }
  99. int main(){
  100.      ios::sync_with_stdio(false);
  101.      cin.tie(nullptr);
  102.      cout.tie(nullptr);
  103.      print_file();
  104. }
  105.  
  106.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement