浮点数
-
系统学Python(一)整数、浮点数、布尔值及类型转换
整数 int类型数据是整数,正整数或负整数,没有小数,不限制长度。自动化QQ交流群:704807680 举例1: x = 2 print(x) print(type(x))#用tp…
-
数据类型扩展及面试题
1、整数类型扩展 public class Demo1 { public static void main(String[] args) { //整数扩展:进制。二进制:0b 十进…
-
整形 浮点型 细节
package week01; public class intDetail { public static void main(String[] args) { int n1 =…