⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.java

📁 this sourse code for the hw problems in java
💻 JAVA
字号:
/*
	Name: Anas Hazeen
	ID  : 991748
*/
public class test{
	
	public static void main(String[] args){
		Cylinder c =new Cylinder(5,20);
		System.out.println("The Length is : "+c.getlength()+"\n");
		System.out.println("The Radius is : "+c.getRadius()+"\n");
		System.out.println("The Area is : "+c.findArea()+" unit\n");
		System.out.println("The Volume is : "+c.findVolume()+" unit\n");
		System.out.println("The Surface Area is : "+c.surfaceArea()+" unit\n");
   	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -