本文介绍了C#整数是什么,它​​的输出?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有点困惑使用本C#代码段。有人能解释执行以下操作呢?

  INT I = 5;

 I = I + 6;
 

解决方案

创建一个用5名为i的值的整型变量,然后增加6到它,从而导致:

  11
 

I'm a bit confused with this C# snippet. Can someone explain what does the following does?

 int i = 5;

 i = i + 6;
解决方案

Creates an integer variable with the value of 5 named i, then adds 6 to it, resulting in:

11

这篇关于C#整数是什么,它​​的输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 19:51