{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("press enter to contiune");
//math tutorial
Console.WriteLine("5 + 3 = " + (5 + 3));
Console.WriteLine("5 - 3 = " + (5 - 3));
Console.WriteLine("5 * 3 = " + (5 * 3));
Console.WriteLine("5 / 3 = " + (5 / 3));
Console.ReadLine();
// casting
//boolian
double Pi = 31.4;
int intPi = (int)Pi;
//Math Functions
// Acos Asin Atan Atan2 Cos Cosh Exp Log Sin Sinh Tan Tanh
double num1 = 10.5;
double num2 = 15;
Console.WriteLine("Math.Max(num1, num2)" + Math.Max(num1, num2));
Console.WriteLine("Math.Min(num1, num2)" + Math.Max(num1, num2));
// other options: Abs Ceiling Floor Pow Round Sqrt
Console.ReadLine();
}
}
}
//使用f5调试只是按下输入等。 //真的不确定无法找到解决方案
答案 0 :(得分:0)
你可以尝试这个,
在Visual Studio中:选择调试菜单,选择选项和设置, 在调试/常规节点内,清除启用我的代码。
稍后,在发布模式下编译您的解决方案并执行它。