码迷,mamicode.com
首页 > 其他好文 > 详细

Rustlings_test1

时间:2020-06-11 13:24:30      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:乐趣   代码   过程   order   stl   write   buying   each   func   

Rustlings_test1

练习过程中的随手记,很多问题也未深究,,简单问题可能直接贴改完之后的代码,..分享出来,若能帮助大家,意外乐趣

// test1.rs
// This is a test for the following sections:
// - Variables
// - Functions

// Mary is buying apples. One apple usually costs 2 Rustbucks, but if you buy
// more than 40 at once, each apple only costs 1! Write a function that calculates
// the price of an order of apples given the order amount. No hints this time!


// Put your function here!
fn calculate_apple_price(num:i32) -> i32 {
    if num > 40 {
        num
    }else {
        num * 2
    }
}

// Don‘t modify this function!
#[test]
fn verify_test() {
    let price1 = calculate_apple_price(35);
    let price2 = calculate_apple_price(65);

    assert_eq!(70, price1);
    assert_eq!(65, price2);
}

Rustlings_test1

标签:乐趣   代码   过程   order   stl   write   buying   each   func   

原文地址:https://www.cnblogs.com/nightwindnw/p/Rustlings_4.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!