标签: c#
如何检查特定整数是否在特定范围内?
我的意思是如果int total在20到39(30)之间,它不会变为0-19而不是40-69
答案 0 :(得分:0)
if (total >= 20 && total <= 39) { //do some stuff }