• 2022-06-07
    下面可以输出浮点数3.0的程序语句有:
    A: print(float('3.0'))
    B: print(float(3))
    C: print(float(' 3.0\n'))
    D: print(float('\t 3.0\n'))
  • A,B,C,D

    内容

    • 0

      在java语言中,以下()代码会引起编译器错误.[br][/br](2.5) A: float[] f1 = new float[4]; B: float[] f2 = new float[3]; C: float f3[] ={1.0,2.0,3.0}; D: float f3[] = new float[]{1.0f,2.0f,3.0};

    • 1

      已知有声明int n;float x,y;则执行语句y=n=x=3.89;后,y的值为( )。 A: 3.0 B: 3 C: 3.89 D: 4

    • 2

      表达式 print(float(complex(10+5j).imag)) 的结果是:

    • 3

      print函数格式化输出使用______函数 A: float B: int C: format D: replace

    • 4

      表达式 type(3.0) in (int, float, complex) 的值为____