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;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-01
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
  • 2021-12-06
  • 2022-12-23
  • 2021-10-04
相关资源
相似解决方案