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; }
相关文章
相关标签/搜索