class NoParamException extends Exception{
杭錦后網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站開發(fā)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)自2013年起到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
public NoParamException(String message)
{super(message);}
}
class InputDecimalException extends Exception{}
public class HOMEWORK
{
public static float getHeight(String args[])throws NoParamException,InputDecimalException
{
float m;
if(args.length==0)
throw new NoParamException("NoParamException occures!");
m=Float.parseFloat(args[0]);
if((int)m!=m)throw new InputDecimalException();
return m;
}
public static void main(String args[])
{
float H=0;
try{
H=getHeight(args);
}
catch(NoParamException e){
System.out.println("NoParamException occures,please input again!");
}
catch(InputDecimalException e){
System.out.println("InputDecimalException occures,please input again!");
}
catch(Exception e){
System.out.println("NoParamException occures,please input again!");
}
for(int i=1;i=H;i++)
? ? {
? ? ? ? for(int j=0;jH-i;j++)
? ? ? ? System.out.print(" ");
? ? ? for(int k=0;k2*i-1;k++)
? ? ? ? ? System.out.print("*");
? ? ? System.out.print("\n");
? ? }
}
}
可以進(jìn)行兩種異常控制,一種是無參數(shù)異常,一種是輸入小數(shù)的異常
這是運(yùn)行過程,記得程序中的publi class名字改過來,與文件名一樣
可利用如下代碼輸出:
package print;
public class Test {
public static void main(String[] args) {
int n = 5;
int num = -1;
for(int i = 1;i n + 1;i++){
System.out.print(i);
if(i == n){
for(int j = 1;j n;j++){
System.out.print(" ?");
System.out.print(n + j);
}
}else{
for(int j = i - 1;j 0;j--){
System.out.print(" ");
int end = n * 2 - 1 + n - i;
if(num == -1){
num = end;
}
if(j == 1){
System.out.print(end);
}else{
num = num + 1;
System.out.print(num);
}
}
}
/*換行*/
System.out.println();
}
}
}
輸出結(jié)果:
打印楊輝三角代碼如下:
public class woo {
public static void triangle(int n) {
int[][] array = new int[n][n];//三角形數(shù)組
for(int i=0;iarray.length;i++){
for(int j=0;j=i;j++){
if(j==0||j==i){
array[i][j]=1;
}else{
array[i][j] = array[i-1][j-1]+array[i-1][j];
}
System.out.print(array[i][j]+"\t");
}
System.out.println();
}
}
public static void main(String args[]) {
triangle(9);
}
}
擴(kuò)展資料:
楊輝三角起源于中國,在歐洲這個(gè)表叫做帕斯卡三角形。帕斯卡(1623----1662)是在1654年發(fā)現(xiàn)這一規(guī)律的,比楊輝要遲393年。它把二項(xiàng)式系數(shù)圖形化,把組合數(shù)內(nèi)在的一些代數(shù)性質(zhì)直觀地從圖形中體現(xiàn)出來,是一種離散型的數(shù)與形的優(yōu)美結(jié)合。
楊輝三角具有以下性質(zhì):
1、最外層的數(shù)字始終是1;
2、第二層是自然數(shù)列;
3、第三層是三角數(shù)列;
4、角數(shù)列相鄰數(shù)字相加可得方數(shù)數(shù)列。
//java編程:輸入三角形的三邊,并輸出,同時(shí)判斷這三邊能否構(gòu)成三角形,?
public?class?Triangle2?
{?
???private?double?sideA,sideB,sideC;//外部不能改變這些變量的值,只能在類中使用方法來修改和獲得這些變量的值??
public?void?setSide(double?sideA,double?sideB,double?sideC)
{???
this.sideA=sideA;//成員變量被局部變量隱藏,需要使用this關(guān)鍵字使用被隱藏的成員變量??
this.sideB=sideB;???
this.sideC=sideC;?
???}????
???public?double?getSideA()??
???{???
??return?sideA;?
???}???
???public?double?getSideB()??
???{???
??return?sideB;??
???}????
???public?double?getSideC()??
???{???
??return?sideC;??
???}???
???public?boolean?isOrNotTrangle()//判斷三邊能否構(gòu)成三角形??
{???
if(sideA+sideBsideCsideA+sideCsideBsideB+sideCsideA)???
???{????
??return?true;?
???}???
???else???
???{????
?return?false;??
???}
}??
}?
class?Example1
?{?
public?static?void?main(String?args[])
{?
?double?sideA,sideB,sideC;?
?Triangle2?triangle=new?Triangle2();???
?triangle.setSide(7.2,8.3,9.6);??
?sideA=triangle.getSideA();??
?sideB=triangle.getSideB();?
?sideC=triangle.getSideC();??
?System.out.println("輸入的三角形的三邊為:"+sideA+"?"+sideB+"?"+sideC);
boolean?isOrNotTrangle=triangle.isOrNotTrangle();
if(isOrNotTrangle==true)??
{???
??System.out.println("這三邊可以構(gòu)成三角形");???
???}???
?else?
???{??
??System.out.println("這三邊不可以構(gòu)成三角形");
}?
}
}