62,623
社区成员
发帖
与我相关
我的任务
分享
public class Test {
/**
* Creates a new instance of <code>Test</code>.
*/
public Test() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
float c,a,b;
a=4.0f;
b=8.0f;
c=a/b;
System.out.printf("a=%f,b=%f\n",a,b);
System.out.printf("(%.2f,%.2f)\n",b,c);
}
}