C++ 试题 算法提高 高精度除高精度

#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int main()
{
    long long int a,b;
    cin>>a>>b;
    if(b==0)
    return 0;
    cout<<a/b;
    return 0;
}

相关文章:

  • 2021-05-11
  • 2021-04-08
  • 2021-11-30
  • 2020-03-12
  • 2021-09-20
  • 2021-10-25
猜你喜欢
  • 2020-01-28
  • 2020-04-16
  • 2021-04-20
  • 2019-03-20
  • 2021-09-07
  • 2021-09-02
相关资源
相似解决方案