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.
 
 
 
 
augusto-mantilla 77b9148c4c
Merge pull request #765 from 01-edu/exam-rust-review-new-exercises
3 years ago
..
README.md Merge pull request #765 from 01-edu/exam-rust-review-new-exercises 3 years ago

README.md

prev_prime

Instructions

Write a function which returns the first prime number which is equal or inferior to the u64 passed as parameter.

If there are no primes inferior to the u64 passed as parameter the function should return 0.

Expected function

pub fn prev_prime(nbr: u64) -> u64  {

}

Usage

Here is a possible program to test your function :

fn main() {
    println!("The previous prime number before 34 is: {}", prev_prime(34));
}

And its output :

$ cargo run
The previous prime number before 34 is: 31
$