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.
 
 
 
 
MSilva95 6ba324f2f2 adding dependencies 3 years ago
..
README.md adding dependencies 3 years ago

README.md

spelling

Instructions

In this exercise a number between 0 and 1000000 will be generated. Your purpose is to create the function spell that will spell the numbers generated.

So, if the program generates the number:

  • 1 your function will return the string "one"
  • 14 your function will return the string "fourteen".
  • 96 your function will return the string "ninety-six"
  • 100 your function will return the string "one hundred".
  • 101 your function will return the string "one hundred one"
  • 348 your function will return the string "one hundred twenty-three"
  • 1002 your function will return the string "one thousand two".
  • 1000000 your function will return the string "one million"

Notions

Expected functions

pub fn spell(n: u64) -> String {}

Usage

Here is a program to test your function.

use spelling::spelling;

fn main() {
    println!("{}", spell(348));
    println!("{}", spell(9996));
}

And its output

student@ubuntu:~/[[ROOT]]/test$ cargo run
three hundred forty-eight
nine thousand nine hundred ninety-six
student@ubuntu:~/[[ROOT]]/test$