
数
蜗牛王小爬
一个学的不怎么地,但是还在努力学习的女孩子~~~加油!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
最大公约数、最小公倍数
#include <iostream>using namespace std;int MaxY(int a,int b){ int min, max; max=a>b?a:b; min=a<b?a:b; if(max%min==0) return min; else return MaxY(min,max%min);} int main(){ int a,b; cout<<"输入两个整数,用空格分隔,按回车键(Enter):"; c.原创 2021-07-06 17:11:37 · 193 阅读 · 0 评论 -
Biorhythms_余数定理
题目描述 Some people believe that there are three cycles in a person's life that start the day he or she is born. These three cycles are the physical, emotional, and intellectual cycles, and they have ...翻译 2018-06-24 14:30:36 · 339 阅读 · 0 评论