HUST Online Judge WebBoard
Problem 1830 >> 解题思路
admin @ 2025-12-27 09:04:48
[ Quote ] [ Edit ] [ Delete ] 1#
二维数组
chenhongyu @ 2026-05-30 20:51:27
[ Quote ] [ Edit ] [ Delete ] 2#
#include<bits/stdc++.h>
using namespace std;

int main(){
int m,n,x;
cin>>m>>n;
if((10000<=m||m>=2000000)&&(2000<=n||n<=10000)) {
x=m/n;
cout<<x;
}

return 0;
}