各種編程語言怎樣表示極值?

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.