主要是对于JAVA的编程的基本语言 希望能够帮得上你。

源代码在线查看: test1.java

软件大小: 2980 K
上传用户: jihengzhang
关键词: JAVA 编程 语言
下载地址: 免注册下载 普通下载 VIP

相关代码

				package exercise;
				
				public class Test1 {
				
					/**
					 * @param args
					 */
					public static void main(String[] args) {
						System.out.println(Math.floor(4.17));
						System.out.println(Math.floor(-4.17));
						
						System.out.println(Math.ceil(4.17));
						System.out.println(Math.ceil(-4.17));
						
						System.out.println(Math.round(45.6788));
						System.out.println(Math.round(45.4988));
						
						System.out.println(Math.round(-45.6788));
						System.out.println(Math.round(-45.4988));
					
						
					}
				
				}
							

相关资源