C# 中,如何通过用户输入给两个变量赋值?

例如声明a,b两个变量,如果通过输入给他们赋值? int a,b;
2024年12月05日 01:13
有5个网友回答
网友(1):

int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());

网友(2):

把用户输入的整型,赋值给变量
int a,b;
a=Inttxtbox.text;//这个Inttxtbox.text是获取控件输入的值;

网友(3):

控制台,int a=int.Parse(Console.ReadLine();),b也一样

网友(4):



.cs 页面
string s =TextBox1.text
s就是文本框里的值

网友(5):

a=Convert.ToInt32(Console.ReadLine());

b=a;