class Class1
{
public int userInput(int user_Input)
{
int final_Value;
for ( int = 1; int < = user_Input; i++)
{
final_Value = int * user_Input;
}
return final_Value;
}
}
我想将 final_value 用于主程序,但它在调试时出错.. 这样做的目的是从用户那里获取输入,例如说 5,这个循环将这个值乘以 5 x 4 x 3 x 2 x 1 并给出我们的输出。我们可以在主程序中使用它。我是 C# 的初学者。