mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
312 B
11 lines
312 B
1 year ago
|
use count_factorial_steps::count_factorial_steps;
|
||
|
|
||
|
fn main() {
|
||
|
println!(
|
||
|
"The factorial steps of 720 = {}",
|
||
|
count_factorial_steps(720)
|
||
|
);
|
||
|
println!("The factorial steps of 13 = {}", count_factorial_steps(13));
|
||
|
println!("The factorial steps of 6 = {}", count_factorial_steps(6));
|
||
|
}
|