Advertisement
Korotkodul

Бинарный поиск-2

Nov 15th, 2021 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <vector>
  4. #include <set>
  5. #include <string>
  6. #include <algorithm>
  7. #include <iomanip>
  8. #include <string.h>
  9. using namespace std;
  10. using ll = long long;
  11. using ld = long double;
  12.  
  13. void co(vector <ll> v){
  14. for (auto x: v) cout<<x<<'\n';
  15. cout<<'\n';
  16. }
  17.  
  18. ld eps = 0.000001;
  19. string A;
  20. void eq(string x){
  21. string A6 = A.substr(0, 6)
  22. }
  23.  
  24.  
  25.  
  26. int main()
  27. {
  28.  
  29. ll a,n;
  30. cin>>a>>n;
  31. A = to_string(a);
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement