摘要: #include <iostream>#include <iomanip>#include <ctime>#include <cstdlib> using namespace std; int main() { int n; cin >> n; do { cout << n % 10; n /= 1 阅读全文
posted @ 2023-08-29 18:21 江南王小帅 阅读(28) 评论(0) 推荐(0)
摘要: #include <iostream>#include <iomanip>#include <ctime>#include <cstdlib> using namespace std; int main() { int a, b, gcd; cin >> a >> b; gcd = a > b ? 阅读全文
posted @ 2023-08-29 17:38 江南王小帅 阅读(13) 评论(0) 推荐(0)