摘要: 1 点击查看代码 #include<iostream> using namespace std; int multiply(int a, int b) { int result = 0; while (b > 0) { if (b % 2 == 1) { result += a; a *= 2; b 阅读全文
posted @ 2023-09-19 23:57 Sophiawxr 阅读(37) 评论(2) 推荐(0)