“2D массив в C#” Ответ

Как получить ввод в 2D массив в c

#include <stdio.h>

int main(){

    printf("Enter the number of columns");
    int i; 
    scanf("%d", &i);
    printf("Enter the number of rows");
    int y; 
    scanf("%d", &y);

    int r[i][y];
    int a;
    int b;

        for (a=0; a<i; a++){
            for (b=0; b<y; b++){
    scanf("%d",&r[a][b]);
        }
    }
}
Yellowed Yacare

2 размерного массива в c

#include<stdio.h>
int main(){
   /* 2D array declaration*/
   int abc[5][4];
   /*Counter variables for the loop*/
   int i, j;
   for(i=0; i<5; i++) {
      for(j=0;j<4;j++) {
         printf("Enter value for abc[%d][%d]:", i, j);
         scanf("%d", &abc[i][j]);
      }
   }
   return 0;
}
Long Ladybird

Ответы похожие на “2D массив в C#”

Вопросы похожие на “2D массив в C#”

Больше похожих ответов на “2D массив в C#” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования