Home > Java > javaTutorial > body text

Java example: Calculation of the sum of the two diagonal numbers of the 6x6 grid (code)

不言
Release: 2018-08-21 14:06:27
Original
2721 people have browsed it

The content of this article is about Java examples: calculation (code) of the sum of the two diagonal numbers of the 6x6 grid. It has certain reference value. Friends in need can refer to it. I hope it will be useful to you. Helps.


Calculate the sum of the two diagonal numbers in the figure, and wrote a relatively simple code

public class Training {
	
	public static void main(String[] args) {

        int [][] scores = new int[6][6];
		int num = 0;
		int sum1 = 0; 
		int sum2 = 0;
		for (int i = 0; i < 6; i++) {
			for (int j = 0; j < 6; j++) {
				scores[i][j]=++num;
			}
		}
		for(int i = 0; i< 6;i++){
			sum1 += scores[i][i];
			sum2 += scores[i][6-i-1];
		}
		System.out.println(sum1);
		System.out.println(sum2);
    }
}
Copy after login

Related recommendations:

Convert xml to Bean instance parsing in java (pure code)


Creation of Java objects: Initialization of classes Timing and process

The above is the detailed content of Java example: Calculation of the sum of the two diagonal numbers of the 6x6 grid (code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!