程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 輸出楊輝三角(C++和 JAVA版 )

輸出楊輝三角(C++和 JAVA版 )

編輯:C++入門知識

輸出楊輝三角(C++和 JAVA版 )


C++版本:

 

#include 

using namespace std;

void main()
{
  int n=10;

  while(n!=-1)
  {
		  cout<<"請輸入 楊輝三角 行數:";
		  cin>>n;
		 int **a = new int* [n];
		for(int m = 0; m < n; m++)
		{
		  a[m] = new int [n];
		}


		  for(int i=0;i

 

 

 

效果:

\

JAVA版:

 

import java.util.Scanner;

/**
 * 楊輝三角  JAVA版
 * @author 明明如月
 * QQ  605283073
 */
public class YangHui
{
	public static void main(String []args)
	{
		int input = 0;
		int arr[][]=null;
		Scanner in = new Scanner(System.in);
		
		try
		{
			while(in.hasNextInt())
			{
				
				input = in.nextInt();
				
				arr= new int[input][input];
				
				for(int i=0;i

效果:

\

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved