JAVA 中printf与c的区别

来源:互联网 发布:c语言结构体使用 编辑:程序博客网 时间:2024/04/25 19:40

[code]

System.out.printf("new base salary with 10% increase is: %f", BPCE.getBaseSalary());  //java出错

System.out.printf("%s: %.2f\n","new base salary with 10% increase is", BPCE.getBaseSalary()* 1.1);  //java接受

[/code]

原创粉丝点击