最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

代碼
提交代碼
class MethodDemo3 { // 定義帶參數(shù)無返回值方法 public void printArea(float a, float b) { // 此處的 a,b 為參數(shù)變量 float result = a * b; System.out.println( "長(zhǎng)方形面積為:" + result); } public static void main(String[] args) { // 實(shí)例化MethodDemo3 MethodDemo3 methodDemo3 = new MethodDemo3(); // 初始化兩個(gè)變量 float width = 12.3f; float height = 20f; // 調(diào)用printArea方法,并將 width、height變量作為參數(shù)傳入 methodDemo3.printArea(width, height); // 也可不提前初始化變量,直接傳入浮點(diǎn)型字面量作為參數(shù)。 methodDemo3.printArea(10.2f, 2.5f); } }
運(yùn)行結(jié)果