⑴ 求一個簡單的java代碼
public class Message {
public static void main(String[] args){
String name;
int age;
System.out.println("請輸入姓名,回車結束:"); //提示輸入
Scanner sc = new Scanner(System.in);
name = sc.nextLine(); //為變數賦值
System.out.println("請輸入年齡,回車結束:");
age = sc.nextInt();
System.out.println("姓名:"+name+"\n年齡:"+age); //列印姓名及年齡
}
}
//不知道這樣行么?
⑵ 簡單JAVA代碼
輸出錯了!!!
第一個類的構造方法,請看
public tt(int b) {
b=x;
}
請問,你new出來tt這個類了,x有值了吧?
也就是說你在這里把x賦給了b,但是在第二個方法又無法用到b,也就是說,這個方法毫無用處
請將 b 和x的位置換換,同時,x為成員變數,不需要初始化給值的,是靠你傳參數的。
第二,請看
public int cc(int b) {
b=x*2;
return b;
}
你可以完全把這個方法里的傳參去掉,應為你的x是成員變數,改為
public int cc() {
return x*2;
}
然後在另外一個類里new出來tt,請看,我幫你修改了
Scanner a =new Scanner(System.in);
int b = a.nextInt();
tt cd =new tt(b);
int sd= cd.cc();
System.out.println(sb);
其實還可以改,
Scanner a =new Scanner(System.in);
tt cd =new tt(a.nextInt());
System.out.println(cd.cc());
⑶ JAVA的一段簡單代碼
class Square {
int length;
Square(int len) {
length = len;
}
void getPerimeter() {
System.out.println("正方形的周長為" + (4 * length));
}
}
class Rectangle extends Square {
int width;
Rectangle(int len, int wid) {
super(len);
width = wid;
}
void getPerimeter() {
System.out.println("矩形的周長為" + (2 * (length + width)));
}
}
public class Calulate{
public static void main(String args[]) {
Square sqObj = new Square(15);
sqObj.getPerimeter();
Square rectObj =new Rectangle(10,33);
rectObj.getPerimeter();
}
}
子類重寫了父類方法!!!
創建了兩個對象~rectObj.getPerimeter()列印出來是子類重寫的~
⑷ 最簡單的java程序
packagee.abc.test2;
publicclassStaff{
privateStringsNo;
privateStringsName;
privateStringsSex;
privateintsAge;
privateintsWage;
publicStaff(StringsNo,StringsName,StringsSex,intsAge,intsWage){
this.sNo=sNo;
this.sName=sName;
this.sSex=sSex;
this.sAge=sAge;
this.sWage=sWage;
}
publicStringgetSNo(){returnsNo;}
publicStringgetSName(){returnsName;}
publicStringgetSSex(){returnsSex;}
publicintgetSAge(){returnsAge;}
publicintgetSWage(){returnsWage;}
}
(4)根據類Staff的定義,創建三個該類的對象,輸出每個職工的信息,計算並輸出他們工資的最大值和最小值。
Staffstaff1=newStaff("1","陳老師","女",20,2000);
Staffstaff2=newStaff("2","白老師","男",24,2500);
Staffstaff3=newStaff("3","周老師","女",22,2400);
intmaxWage=Math.max(staff1.getSWage(),staff2.getSWage());
maxWage=Math.max(maxWage,staff3.getSWage());
intminWage=Math.min(staff1.getSWage(),staff2.getSWage());
minWage=Math.min(minWage,staff3.getSWage());
System.out.println(String.format("三人之中的最高工資:%d",maxWage));
System.out.println(String.format("三人之中的最低工資:%d",minWage));
⑸ 我需要一段最簡單的java代碼程序
public class HelloWorld{
public static void main(String[] args){
System.out.println("hello world!");
}
}
⑹ 一個簡單的Java程序代碼
public double GetCost(int minutes)
{
//整數時間所花的費用
int aa = minutes / 60; //未滿1小時處理
if (minutes < 60)
return 2;
//超出小時部分
int bb = minutes % 60; //其實你還有必要做一些其他處理。比如說超過30分鍾了該怎麼樣算等等...... return aa * 2 + bb * 0.01d;
}
⑺ java一段簡單代碼怎麼寫
JAVA代碼:if("劉".equals(username) && "123".equals(password)){�0�2 �0�2 �0�2 �0�2System.out.println("歡迎你,劉");}else{�0�2 �0�2 �0�2 �0�2System.out.println("System.out.println("歡迎你,劉")");}
你是初學者吧?祝你成功哦!
⑻ 求助三個簡單JAVA代碼
你好!
輸入使用的Scanner,排序可以使用Arrays.sort()函數;
判斷月份這個應該就是簡單的分支判斷,if else、switch、三元運算符等等;
楊輝三角主要找到數字之間的關系,得到數據再輸出就好了;
希望對你有幫助!
⑼ 給段最簡單的java代碼 讓我新手看一下
最簡單的java代碼肯定就是這個了,如下:
public class MyFirstApp
{
public static void main(String[] args)
{
System.out.print("Hello world");
}
}
「hello world」就是應該是所有學java的新手看的第一個代碼了。如果是零基礎的新手朋友們可以來我們的java實驗班試聽,有免費的試聽課程幫助學習java必備基礎知識,有助教老師為零基礎的人提供個人學習方案,學習完成後有考評團進行專業測試,幫助測評學員是否適合繼續學習java,15天內免費幫助來報名體驗實驗班的新手快速入門java,更好的學習java!
⑽ 求一個簡單的java代碼:(圖形界面)
直接寫main函數里了
public static void main(String[] args) {
JFrame ck = new JFrame("title");
JPanel mb = new JPanel();
mb.setLayout(null);
String str = "test"; //自己定義要顯示什麼
JTextArea ta = new JTextArea(str);
ta.setBounds(0, 0, 100, 30); //自己定義文本區在窗口中的位置和大小
mb.add(ta);
ck.add(mb);
ck.setVisible(true);
ck.setBounds(200, 200, 500, 500); //自己定義窗口位置和大小
}