摘要: #include<iostream>using namespace std;int main() { int m, n,s; cin >> m >> n; s = m / n; if (s*n < m) cout << s + 1 << endl; else cout << s << endl; r 阅读全文
posted @ 2017-08-15 21:21 Isaacgy 阅读(215) 评论(0) 推荐(0)