Перевод кода C++ в C# - C#

242
04 декабря 2017, 14:27

народ помогите перевести это в C# я не знаком c#

#include <stdio.h>
#include <conio.h>
#define nmax 100
void main()
{
int a[nmax][nmax];
int i,j,n,s=0;
int max, min;
clrscr();
printf("n manin engiz->");
scanf("%d",&n);
for (i=0;i<n;i++) {
for (j=0;j<n;j++){
printf("a[%d][%d]=",i,j);
scanf("%d",&a[i][j]);
}
}
max=a[0][0];
for (i=0;i<n;i++){
for (j=0;j<n;j++){
if (a[i][j]>max){
max=a[i][j];
}
}
s=s+max;
max=a[0][0];
}
printf("\nOndelgen massiv \n");
for (i=0;i<n;i++){
for (j=0;j<n;j++){
printf("%d ",a[i][j]);
}
printf("\n");
}
printf(" max sum = %d\n",s);
getch();
}
Answer 1

Вроде должно помочь...

using System;
namespace Willi
{
    class Program
    {
        static void Main(string[] args)
        {
            int n=0;
            Console.Write("Введи N: ");
            n = Convert.ToInt32(Console.ReadLine());
            int[,] arr = new int[n, n];
            for(int i = 0; i < n; i++)
            {
                for(int j = 0; j < n; j++)
                {
                    Console.Write("Input array[{0}][{1}]: ", i ,j);
                    arr[i, j] = Convert.ToInt32(Console.ReadLine());
                }
            }
            int max, summax = 0;
            for (int i = 0; i < n; i++)
            {
                max = arr[i, 0];
                for (int j = 0; j < n; j++)
                {
                    max = Math.Max(arr[i, j], max);
                }
                summax += max;
            }
            for (int i = 0; i < n; i++)
            {
                for (int j = 0; j < n; j++)
                {
                    Console.Write("{0} ", arr[i, j]);
                }
                Console.WriteLine("");
            }
            Console.WriteLine("Сумма максимальных: {0}", summax);
            Console.ReadLine();
        }
    }
}
READ ALSO
Как перевести текст с например С# на Pascal

Как перевести текст с например С# на Pascal

Я мирно сидел, писал свои программыКак вдруг я понял что не могу решить одну проблему

161
Ошибка BadimageFormatException

Ошибка BadimageFormatException

При переносе с одного компьютера на другой проекта, при загрузке выскакивает ошибка BadimageFormatExceptionПрошу помощи

162