if语句大于并且小于怎么写?
这要看你用什么开发语言。vb中的代码如下:
dim i%
i=len(strcpname)
if i>10 and i<200 then
msgbox "ok"
end if
同样的代码在java中
int i=strcpname.length
if(i>10&&i<200){alert("ok!"}