调试从2个控制台开始,而不是1个

时间:2019-03-05 12:15:16

标签: visual-studio

当我从Visual Studio启动控制台应用程序时,它首先打开2个控制台,您需要将数据输入到每个控制台中,只是不要关闭它。如果从第一个开始一切都清楚(直到Shift + F5组合才关闭),那么从第二个开始一切都会变得更加复杂。她无所不在地出现了,在此之前。 Visual Studio中的此类设置在哪里,它将使所有内容都变为正常状态?
语言:C#
该程序采用由6个数字组成的字符串,该数字分为2个数组,以升序排列并相乘。
代码:

string textfrominput = Console.ReadLine();
int[] a = new int[3];
int[] b = new int[3];
        /* convert from textfrominput to int array's */
int sum = 0;
        /* the sum is assigned the value of the multiplied elements of the array */
Console.WriteLine(sum);

在Google翻译程序的帮助下从俄语翻译,因为不会出现语法错误。

一些证明

enter image description here

0 个答案:

没有答案