class MainClass
{
    static void Main()
    {
        double x;

        x = 1.5;
        Console.WriteLine(++x);
        Console.WriteLine(x);

        x = 1.5;
        Console.WriteLine(x++);
        Console.WriteLine(x);
    }
}

 

结果值为:
2.5
2.5


1.5
2.5

 

相关文章:

  • 2021-06-02
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
  • 2021-09-08
  • 2022-12-23
  • 2021-11-30
  • 2021-05-28
猜你喜欢
  • 2021-10-14
  • 2021-07-13
  • 2022-12-23
  • 2022-01-23
  • 2021-09-10
  • 2021-12-08
相关资源
相似解决方案