欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA练习7.16,第20

程序员文章站 2022-04-20 21:49:26
...
/**************置换***************/
package com.fg;

public class Zhuanzhi {
	public void printZhuanzhi(int[][] array) {
		for (int i = 0; i < 3; i++) {
			for (int j = 0; j < 3; j++) {
				if (j > i) {
					int temp;
					temp = array[i][j];
					array[i][j] = array[j][i];
					array[j][i] = temp;

				}
				System.out.print(array[i][j]+"  ");
			}
			System.out.println();
		}

	}

	public static void main(String[] args) {
		Zhuanzhi cft = new Zhuanzhi();
		int[][] array = new int[][] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
		// 调用方法及传入参数
		cft.printZhuanzhi(array);

	}
}

JAVA练习7.16,第20

/******************乘法表************/

package com.fg;

import java.util.Scanner;

/*怎样用成员函数编写九九乘法表,从键盘输入一个整数(1~9),
 * 打印出相应的乘法表 
 * 
 * */
public class Cf {

//成员方法
 public void printCf(int a){
  for(int i=1;i<=a;i++){
   for(int j=1;j<=i;j++){
    System.out.print(i+"*"+j+"="+(i*j)+" ; ");
   }
   System.out.println();
  }

}
 public static void main(String[] args) {
  Scanner sc=new Scanner(System.in);
  System.out.println("请输入1~9的整数");
  int i=sc.nextInt();
  Cf cft=new Cf();
  //调用方法及传入参数
  cft.printCf(i);

 }

}

JAVA练习7.16,第20

/**********金字塔*************/

package com.fg;

import java.util.Scanner;

/*怎样用成员函数编写九九乘法表,从键盘输入一个整数(1~9),
 * 打印出相应的乘法表 
 * 
 * */
public class Kx {

//成员方法
 public void printKx(int a){
	 int floor =a;
		
		for(int i=1;i<=floor;i++) {//当前层数加上空格数等于总层数,i是当前层数
			for(int j = 1;j<=a-i;j++){
				System.out.print(" ");
				
			}
			for(int b = 1;b<=(2*i-1);b++){
				System.out.print("*");
			}
			System.out.println();
		}
		
 
		
 }			
 public static void main(String[] args) {
  Scanner sc=new Scanner(System.in);
  System.out.println("请输入整数");
  int i=sc.nextInt();
  Kx cft=new Kx();
  //调用方法及传入参数
  cft.printKx(i);

 }

}


JAVA练习7.16,第20
相关标签: 作业