• 第二次作业二



      2、package s004;
     
      import java.util.*;
     
      public class B {
         
          public static void main(String[]args){
           int[][] a=new int[10][10];//定义一个10乘10的二维数组
               a[0][0]=13;
               a[0][1]=1;
               a[0][2]=34;
               a[2][2] =32;  
               a[1][2]=771;
              a[3][4]=3354;//赋值
             int sum =0;
         
            
             for(int i=3;i<10;i++)
            {
                 for(int j=3;j<10;j++)//取出a[5][5]到a[9][9]里面的数据求和,自己任意定义即可
              sum+=a[i][j];
             }
            System.out.println(sum); 
        }
     
     }

    3、package s004;
     
      import java.util.*;
     
      public class C {
         
          public static void main(String[]args){
           int[][][] a=new int[10][10][10];//定义一个10乘10乘10的三维数组
               a[4][3][1]=13;
               a[6][6][1]=1;
               a[2][2][9]=34;
               a[4][2][7] =32;  
               a[1][5][6]=771;
              a[3][4][8]=3354;//赋值
             int sum =0;
         
            
             for(int i=2;i<10;i++) {
                 for(int j=2;j<10;j++){
                 for(int k=2;k<10;k++)                     //取出a[2][2][2]到a[9][9][9]里面的数据求和,自己任意定义即可
                
            
              sum+=a[i][j][k];
             }
                 }
            System.out.println(sum); 
        }
     

  • 相关阅读:
    将HTTP请求对象转成curl命令行
    图片爬虫实践
    [CF1499E] Chaotic Merge
    [ICPC2020南京I] Interested in Skiing
    [ICPC2018西安J] Philosophical … Balance
    [ICPC2018西安L] Eventual … Journey
    [ICPC2018西安I] Misunderstood … Missing
    [ICPC2018西安D] Deja vu of … Go Players
    [ICPC2018西安F] Interstellar … Fantasy
    [ICPC2020南京L] Let's Play Curling
  • 原文地址:https://www.cnblogs.com/yuanlp1369/p/4833249.html
Copyright © 2020-2023  润新知