下列()函数的返回值是4。
A: int(3.4)
B: int(3.9)
C: round(3.4)
D: round(3.9)
A: int(3.4)
B: int(3.9)
C: round(3.4)
D: round(3.9)
举一反三
- 以下哪个函数的返回值是4.0? A: int(3.9) B: round(3.4) C: ceil(3.4) D: floor(3.9)
- VB中,函数Int(3.9)=4。
- 下列表达式的值不等于4的是( ) A: Int (4.1) B: Int (4.9) C: Abs (int (-3.9)) D: Abs (int (-4.5))
- 下列Visual Basic表达式中,()的值等于4。 A: Int(4.1) B: Int(4.9) C: Int(3.9) D: Int(5.1)
- 以下哪项函数会导致错误 A: eval("034") B: int("034") C: int(3.4) D: eval("3.4")