using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 加加 { class Program { static void Main(string[] args) { int i = 3; int count = (i++) + (i++) + (i++); } } }
So 最终结果是 i = 6; count = 12;
|