黄色电影一区二区,丰满熟妇AV,97成人资源,日韩在线性爱

C# 實(shí)例 If Else 條件

c# 實(shí)例

 if else 條件

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

</body>
</html>

相關(guān)文章