吾本轻狂|一起学Rust编程「6」:变量的声明( 三 )

< v { u } else { v };let mut x = max(a, b);let mut y = min(a, b);while x % y != 0 {let xx = x;x = y;y = xx % y}y}fn main() {let x = 320;let y = 88;println!("greatest common divisor of {} and {} is {}",x, y, gcd(x, y));}关注红小豆 , 一起学习Rust开发 。 欢迎点赞 , 转发 , 收藏!


推荐阅读