1 在横线上填上适当的语句,使程序能正常运行。 class Test{ 【 1 】 float fl; 【 2 】 {num=1;f1=2.0f;} public int getint(){return num;} public float getfloat(){return fl;} } class Demo{ public static void main(String []args){ { 【 3 】 t=new Test(); System.out.print(t.getint()+” “+t.getfloat());} 运行结果为: 1 2.0