gpt4 book ai didi

c# - 如何在 .NET 3 控制台应用程序的打印行中间获取输入

转载 作者:行者123 更新时间:2023-12-04 15:02:22 25 4
gpt4 key购买 nike

我的问题很简单,但我似乎找不到简单的答案,在这一点上根本没有答案。

我想做的是打印一个问题,然后有一个答案字段,然后在不等待输入的情况下写更多的文本:

This is a program that solves second degree equations using this formula ax*x + bx + c = d
write your numbers! {WHERE I WANT TO WRITE AND GET INPUT}x*x + bx+ c = d

我写了 {WHERE I WANT TO WRITE AND GET INPUT} 我想在应用程序运行时写的地方,然后获取输入,这样应用程序就可以开始计算了!

最佳答案

注意:在控制台程序的上下文中,术语“光标”是指控制台文本的插入符号或插入点 - 它不是是指您的鼠标指针。


您可以使用 Console.SetCursorPosition 来控制将文本写入控制台的位置,但它有许多警告:

即,您将需要使用 Console.CursorTopConsole.CursorLeft(或 Console. .NET 5 上的 GetCursorPosition)。 这样你就可以在打印字段时知道光标在哪里 - 因为控制台缓冲区(可以根据窗口调整大小)可以随时由用户调整大小 - 这也是为什么许多控制台如果程序没有正确控制光标位置,它们在调整大小时会输出乱码。

这是您的问题的示例实现:数学表达式中的占位符。请注意,每个占位符只能插入单个字符(由下划线字符表示)。如果您想在输入更多数字时使占位符动态扩展,那么这就是读者的练习(提示:使用 \r 重新打印该行)。

        static void Main( string[] args )
{
const String line1 = "This is a program that solves second degree equations using this formula ax*x + bx + c = d";
const String line2 = "write your numbers! _x*x + _x+ _c = d";

// HACK:
if( Console.BufferWidth < line2.Length )
{
Console.WriteLine( "Please resize your console window to {0} columns and restart this program.", line2.Length );
return;
}

Console.WriteLine( line1 );
Console.WriteLine( line2 );

// Get the character indexes of the placeholders:
Int32 pos1 = line2.IndexOf( '_' );
Int32 pos2 = line2.IndexOf( '_', pos1 + 1 );
Int32 pos3 = line2.IndexOf( '_', pos2 + 1 );
Int32 pos4 = line2.IndexOf( 'd', pos3 + 1 );

#if NET5_0
(Int32 x, Int32 y) = Console.GetCursorPosition();
#else
Int32 x = Console.CursorLeft;
Int32 y = Console.CursorTop;
#endif

// Curiously, `y` is 2 for the second line (implying base 1), but SetCursorPosition uses base 0, so adjust it:
y = y - 1;

// Assuming the placeholders are on the same line without any wrapping:
Console.SetCursorPosition( left: pos1, top: y );

Int32? a = ReadDigit();
if( a == null ) return;

Console.SetCursorPosition( left: pos2, top: y );

Int32? b = ReadDigit();
if( b == null ) return;

Console.SetCursorPosition( left: pos3, top: y );

Int32? c = ReadDigit();
if( c == null ) return;

// Compute 'd':
Double d = 1234;// SolveQuadradicFormula( a, b, c );

// Move cursor where the 'd' is:
Console.SetCursorPosition( left: pos4, top: y );

// Then write the value of d:
Console.Write( d );
Console.WriteLine();
}

private static Int32? ReadDigit()
{
do
{
ConsoleKeyInfo key = Console.ReadKey();
if( Char.IsDigit( key.KeyChar ) )
{
return key.KeyChar - '0';
}
else if( key.Key == ConsoleKey.Escape )
{
return null;
}
}
while( true );
}

截图证明:

等待用户输入:

enter image description here

在我的键盘上按下 1 之后:

enter image description here

然后,在我的键盘上按下 2 之后:

enter image description here

然后,在我的键盘上按下 3 之后(这也显示了 d 的值,它只是 1234:一个假的占位符值现在):

enter image description here

关于c# - 如何在 .NET 3 控制台应用程序的打印行中间获取输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66761033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com