zoukankan      html  css  js  c++  java
  • Rustlings_test1

    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);
    }
    
  • 相关阅读:
    HDU 4325 Contest 3
    HDU 4324 Contest 3
    HDU 4323 Contest 3
    HDU 4321 Contest 3
    HDU 4320 Contest 3
    HDU 4314 Contest 2
    HDU 4313 Contest 2
    HDU 4318 Contest 2
    12-----简单认识下margin
    11-----broder(边框)
  • 原文地址:https://www.cnblogs.com/nightwindnw/p/Rustlings_test1.html
Copyright © 2011-2022 走看看