C#编程--C#运算符
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//运算符
//+ - * / %
//++自增 --自减
//+ 可以用于字符串的连接
//1,应用
int i = 9;
i++;
Console.WriteLine(i);
Console.WriteLine(i++);
}
}
}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。