public class Main {public static void main(String[] args){float x, y, z;x=94.3f; y=32.9f; z=x/y;System.out.println(x+"/"+y+"="+z);}}
这个加号是字符串拼接作用