成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

java三角形框代碼 java畫三角形代碼

在java字符界面下怎樣畫出一個(gè)三角形?給一個(gè)程序!

import java.util.Scanner;

10年積累的網(wǎng)站制作、做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有滿洲免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

public class Main {

public static void main(String args[]){

Scanner scanner=new Scanner(System.in);

System.out.println("請(qǐng)輸入三角形大小,注意為奇數(shù)");

int flag=0;

int x=0;

while(flag==0){

x=scanner.nextInt();

if(x%2==1)

flag=1;

else

System.out.println("大小不能為偶數(shù),請(qǐng)重新輸入!");

}

int h=0,i=0,j=0,k=0,l=0;

System.out.println("左直角三角形");

for(i=0;ix;i++)

{

for(j=0;j=i;j++)

{

System.out.print("*");

}

System.out.println();

}

System.out.println("右直角三角形");

for(h=x-1;h=0;h--){

for(i=h-1;i=0;i--)

System.out.print(" ");

for(j=x-h-1;j=0;j--)

System.out.print("*");

System.out.println();

}

k=x*2+1;

l=k/2;

System.out.println("正等邊三角形");

for(h=l;h=0;h--){

for(i=h;i=0;i--)

System.out.print(" ");

for(j=k-2*h;j0;j--)

System.out.print("*");

System.out.println(" ");

}

k=x*2+1;

l=k/2;

System.out.println("倒等邊三角形");

for(h=l;h=0;h--){

for(i=l-h;i=0;i--)

System.out.print(" ");

for(j=k-2*(l-h);j0;j--)

System.out.print("*");

System.out.println(" ");

}

l=x/2+1;

System.out.println("左豎等腰三角形");

for(i=0;il;i++)

{

for(j=0;j=i;j++)

{

System.out.print("*");

}

System.out.println();

}

for(i=l-1;i0;i--){

for(j=i;j0;j--)

System.out.print("*");

System.out.println();

}

l=x/2+1;

System.out.println("右豎等腰三角形");

for(h=l-1;h=0;h--){

for(i=h-1;i=0;i--)

System.out.print(" ");

for(j=l-h-1;j=0;j--)

System.out.print("*");

System.out.println();

}

for(h=l-1;h0;h--){

for(i=l-1-h;i=0;i--)

System.out.print(" ");

for(j=h;j0;j--)

System.out.print("*");

System.out.println();

}

}

}

大小為5的輸出結(jié)果:

請(qǐng)輸入三角形大小,注意為奇數(shù)

5

左直角三角形

*

**

***

****

*****

右直角三角形

*

**

***

****

*****

正等邊三角形

*

***

*****

*******

*********

***********

倒等邊三角形

***********

*********

*******

*****

***

*

左豎等腰三角形

*

**

***

**

*

右豎等腰三角形

*

**

***

**

*

基本上都有了吧,還有什么疑問么?

java怎么打出三角形

用Java代碼中的for循環(huán)可以打印出各種三角形,便于熟悉for循環(huán)的特性,即外環(huán)循環(huán)執(zhí)行一次,內(nèi)循環(huán)執(zhí)行N次。

工具:

電腦軟件

for循環(huán)

三角形

方法:

1、打印定點(diǎn)在左下的直角三角形;

2、打印定點(diǎn)在左上的直角三角形;

3、打印定點(diǎn)在右下的直角三角形,這里三角形的形狀是由*所占的位置決定的;

4、打印定點(diǎn)在左下的直角三角形,這里三角形的形狀是由*所占的位置決定的;

5、打印定點(diǎn)在正上方的直角三角形;

6、打印定點(diǎn)在正下方的直角三角形。

Java語言楊輝三角

打印楊輝三角代碼如下:

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代碼來做三角形的判斷?

public class Test7 {

public static String T(double a,double b,double c){

double tem = Math.max(a, b);

if(temc){

if(tem==a){

a = c;

}else {

b = c;

}

c = tem;

}

if(!(a+bcMath.abs(a-b)c)){

return "無法構(gòu)成三角形";

}else if(a==b||a==c||b==c){

return "等腰三角形";

}else if(a*a+b*b==c*c){

return "直角三角形";

}else if(a*a+b*bc*c){

return "銳角三角形";

}else return "鈍角三角形";

}

public static void main(String[] args) {

System.out.println(Test7.T(11, 5, 12));

}

}

用java程序?qū)懸粋€(gè)三角形

public class DaoSanJiao { // 定義一個(gè)倒三角的類,有主方法和 輸出倒等腰三角形方法

public static void main(String[] args) { // 定義主方法,程序從這里開始

printDengyao(10); // 調(diào)用輸出倒三角形的方法,*數(shù)為10, 即高度(層)也為10

// 10可以換成任何整型值

}

public static void printDengyao(int x) { // 定義一個(gè)輸出倒三角的方法

for (int i = 0; i x; i++) { // 要輸出的整體(全部多少行)用這個(gè)for循環(huán)控制

System.out.println(); // 輸出一行*后跳到下一行

for (int j = 0; j i + 1; j++) { // 這個(gè)循環(huán)用來輸出空格,以達(dá)到輸出倒等腰三角形的效果

System.out.print(" ");

}

for (int j = i; j x; j++) { // 這個(gè)循環(huán)用來輸出*,他的數(shù)目有傳入的參數(shù)x決定

System.out.print("* "); // 如:i=0時(shí)即第一行,輸出x個(gè)“*”

}

}

}

}

java 編程 三角形

//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)成三角形");

}?

}

}

本文名稱:java三角形框代碼 java畫三角形代碼
文章源于:http://jinyejixie.com/article48/dodheep.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導(dǎo)航、微信小程序軟件開發(fā)、ChatGPT、商城網(wǎng)站、企業(yè)網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站建設(shè)
博湖县| 老河口市| 西林县| 铜山县| 遵化市| 渝北区| 清徐县| 光山县| 尼勒克县| 石渠县| 额敏县| 龙岩市| 林芝县| 韩城市| 桂林市| 井研县| 南召县| 龙岩市| 鹤庆县| 海林市| 合川市| 济源市| 时尚| 东明县| 台南县| 大安市| 开远市| 陵川县| 崇仁县| 涿鹿县| 商水县| 石渠县| 长治市| 娄烦县| 邵阳县| 固始县| 华蓥市| 平江县| 宁津县| 柘城县| 宜都市|