参考程序1
#include <iostream>
using namespace std;int main() {int n, m;cin >> n >> m;// 计算最少天数int days = n / m; // 先除以 m 得到整天数if (n % m != 0) { // 如果还有剩余试卷,增加一天days++;}cout << days << endl;return 0;
}
参考程序2
#include<bits/stdc++.h>
using namespace std;
int main(){int n,m;cin>>n>>m;cout<<n/m+(n%m!=0);return 0;
}
参考程序3
#include<bits/stdc++.h>
using namespace std;
int main(){int n,m;cin>>n>>m;cout<<(n+m-1)/m;return 0;
}
参考程序4
#include<bits/stdc++.h>
using namespace std;
int main(){int n,m;int ans;cin>>n>>m;cout<<int(ceil(1.0*n/m));return 0;
}