📄 class1.cs
字号:
using System;
namespace CompoundAss
{
public class CompoundAssApp
{
[STAThread]
public static void Main(string[] args)
{
int nCalc = 10;
nCalc += 5;
Console.WriteLine(nCalc);
nCalc -= 3;
Console.WriteLine(nCalc);
nCalc *= 2;
Console.WriteLine(nCalc);
nCalc /= 4;
Console.WriteLine(nCalc);
nCalc %= 4;
Console.WriteLine(nCalc);
Console.WriteLine();
int x;
x = 5;
x = x * 3 + 4;
Console.WriteLine("{0}", x);
x = 5;
x *= 3 + 4;
Console.WriteLine("{0}", x);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -