人死后将去往何方?
2024-02-19 13:25:29
发布于:浙江
9阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
int h = 4396, g = 2200;
printf("%d+%d=%d\n",h,g,h+g);
printf("%d-%d=%d\n",h,g,h-g);
printf("%d*%d=%d\n",h,g,h*g);
printf("%d/%d=%d\n",h,g,h/g);
printf("%d",h);
cout<<"%";
printf("%d=%d\n",g,h%g);
return 0;
}
这里空空如也
有帮助,赞一个