各种编程语言怎样表示极值?

Python

float('inf') #正无限大
-float('inf') #负无限大

Java 最大整数或最小整数

Integer.MAX_VALUE // 2^31 - 1
Integer.MIN_VALUE // -2^31

为什么是31次方,有一位用来表示正负号了

Leave a Comment

Your email address will not be published.