首页上一页 1 下一页尾页 2 条记录 1/1页
求大佬解答
发表在C#答疑区
2018-12-10
是否精华
是
否
版块置顶:
是
否
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace cc
{
class Program
{
static void Main(string[] args)
{
int a = 6;
int b = a++;
Console.WriteLine(b);
b = ++a;
Console.WriteLine(b);
Console.WriteLine((a++) + (a++));
b = (a++) + (a++);
Console.WriteLine(b);
Console.ReadLine();
}
}
}
那个(a++) + (a++)是怎么计算的