- 博客(2)
- 收藏
- 关注
原创 C语言编程求最大公约数与最小公倍数
欧几里得算法(辗转相除法) 输入两个数m,n 输出这两个数的最大公约数和最小公倍数 #include<stdio.h> int main() { int a,b,r,m,n; scanf("%d %d",&m,&n); a=m; b=n; while(b) { if(a%b!=0) { r=a%b; a=b; b=r; } ...
2020-04-02 17:53:29 1560
原创 第一个rust程序
第一个rust程序 hello—rust 新建一个hellorust.rs文件 vim hellorust.rs 在hellorust.rs中输入rust代码 fn main(){ println!(“hello rust!”); } 编译文件hellorust.rs rustc hellorust 运行程序 ./hellorust 得到结果 ...
2020-03-30 11:47:53 184
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人