C# 实例 Else If 条件

c# 实例

else if 条件

 

@{var price=25;}
<html>
<body>
if (price>=30)
    {
    <p>the price is high.</p>
    }
    else if (price>20 && price<30)  
    {
    <p>the price is ok.</p>
    }
    else
    {
    <p>the price is low.</p>
    }

</body>
</html>

相关文章