Java常用函式思想

2021-05-27 07:26:06 字數 1972 閱讀 8484

class  day2test

/*累加思想。

*/public static void getsum()

system.out.println("sumn="+sum);}/*

計數器思想。

*/public static void getcount()

system.out.println("count="+count);}/*

大圈套小圈

1*1=1

1*2=2   2*2=4

1*3=3   2*3=6   3*3=9

1*4=4   2*4=8   3*4=12  4*4=16

1*5=5   2*5=10  3*5=15  4*5=20  5*5=25

1*6=6   2*6=12  3*6=18  4*6=24  5*6=30  6*6=36

1*7=7   2*7=14  3*7=21  4*7=28  5*7=35  6*7=42  7*7=49

1*8=8   2*8=16  3*8=24  4*8=32  5*8=40  6*8=48  7*8=56  8*8=64

1*9=9   2*9=18  3*9=27  4*9=36  5*9=45  6*9=54  7*9=63  8*9=72  9*9=81

*/public static void getcfb()  //過載下面的方法

/*同樣是乘法表,但是使用者不想算到9,因為需求是讓使用者來指定。

*/public static void getcfb(int num)

system.out.println();}}

/*定義功能,根據傳入的分數,確定等級。

90~100 『a' 80~89 'b' 70~79 『c' 60~69 『d'  'e'

*/public static char getlevel(int num)}/*

作業:1,定義功能,根據傳入的分數,確定等級。

90~100 『a' 80~89 'b' 70~79 『c' 60~69 『d'  'e'

2,void show(int x,float y,char z)

{}a,

void show(int z,float x,char y){}                           //沒過載,因為這兩個函式是一樣的。

b,void show(char z,float y,int x){}                           //過載。引數型別不一樣。

c,int show(int x,float y,char z)              //沒有,而且這個函式不可以和給定函式出現在同乙個類中。

d,void show(int x,char z)                                        //過載了。個數不同。

{}e,

void show(int a,float b,char c)                           //沒過載,和給定函式一致。

{}問:哪個答案和給定的函式過載了?

boolean b = true;

if(b=false)//if(b=false)

system.out.println("a");

else if(!b)

system.out.println("b");

else if(b)

system.out.println("c");

else

system.out.println("d");

int x=1,y=1;

if(x++==2 && ++y==2)

system.out.println("x="+x+",y="+y);

-----------------

int x=1,y=1;

if(x++==1 | ++y==2)

system.out.println("x="+x+",y="+y);

*/

java常用函式

1.system.out.println integer.tooctalstring n 2.system.out.println integer.tobinarystring arg0 十進位制轉換為二進位制 3.system.out.println integer.tooctalstring a...

Java常用數學函式

三角函式方法 sin radians cos radians tan radians toradians degree 將以度為單位的角度值轉化為以弧度表示 todegrees radians 將以弧度為單位的角度值轉化為以度表示 asin a acos a atan a 指數函式方法 exp x ...

java程式設計思想

一 一切都是物件 現實世界中的一切,人 動物 操作流程 衣服等等,都可以抽象成物件 二 類引用 class tv tv tv tv是tv的乙個引用,未初始化時指向null這個特殊的物件 tv new tv tv指向 new tv 這個物件三 記憶體分配 暫存器,最快的儲存區,根據需要分配 棧,儲存基...