java代码中何处以main开始_自测题: Java 基础
1.19 自測題:
什么是字節碼?它對Java的Internet程序設計為何十分重要?
字節碼是一種高度優化的指令集,由Java虛擬機執行,可幫助Java獲得可移植性和安全性
面向對象程序設計的三個主要原則是什么?
封裝、多態性和繼承
Java程序從何處開始執行
Java程序從main()方法開始執行
什么是變量
變量是一種命名的內存地址,可以在程序運行的時候修改遍變量的內容
下列哪幾個變量是無效的?
count
$count
count27
67count (變量名不能以數字開頭)
如何創建單行注釋和多行注釋?
單行注釋以‘ // ’開始,在行尾結束;多行注釋以‘ / * ’開始,以‘ */ ’結束
寫出if語句和for循環的形式
if(condition) statement;
for(initialization;condition;iteration) statement;
如何創建代碼塊?
代碼塊以‘ { ’開始,以’ } '結束
A block of code is started with a { and ended with a }.
月球重力為地球重力的17%,編寫一個程序來計算你在月球上的實際體重
package io.github.Joeo8;
import java.util.Scanner;
//月球上的重力是地球的17%,請編寫一個程序來計算你在月球的實際體重
public class Weigth {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("請輸入你當前的體重值: ");
double weight = sc.nextDouble();
WeightMath(weight);
}
public static void WeightMath(double weight){
double RealWeight = weight * 0.17;
System.out.println("你在月球的真實體重為: "+RealWeight);
}
}
/*
Compute your weight on the moon.
Call this file Moon.java
*/
package io.github.Joeo8;
class Moon {
public static void main(String[] args) {
double earthweight; // weight on earth
double moonweight; // weight on moon
earthweight = 165 ;
moonweight = earthweight * 0.17;
System.out.println(earthweight +
" earthweight is equivalent to " +
moonweight + " moon-pounds.");
}
}
改編練習1-2,打印從英寸到米的轉換。轉換12英寸,一英寸一英寸地轉換:每12英寸輸出一個空行(1米約等于39.27英寸)
package io.github.Joeo8;
//寫一個單位轉換程序,從英寸到米 (1米約等于39.37英寸)
//要求轉換12英尺(一英尺==12英寸),每12英寸輸出一個空行
public class InchToMeter {
public static void main(String[] args) {
Exchange();
}
public static void Exchange(){
for (double in = 1; in <= 12*12 ;in++) {
double me = in / 39.37;
System.out.println(in+" inch is vaule of "+me+" meter");
if (in % 12 == 0){
System.out.println();
}
}
}
}
//在這個程序中遇到的問題
標簽:12,Java,weight,double,基礎,System,自測題,public
來源: https://blog.csdn.net/qq_43353521/article/details/110039510
總結
以上是生活随笔為你收集整理的java代码中何处以main开始_自测题: Java 基础的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: c ++向量库_在C ++中对2D向量进
- 下一篇: ruby 将字符串转为数组_Ruby程序