将 1 添加到给定数字?
将 1 添加到给定数字的程序通过 1 增加变量的值。这通常用于计数器。
有 2 种方式可用于将给定数字增加 1 −
将 1 简单地添加到数字并将其重新分配给变量。
在程序中使用增量运算符。
方法 1 − 使用重新分配方法
此方法获取变量,向其添加 1,然后重新分配其值。
示例代码
#include <stdio.h> int main(void) { int n = 12; printf("The initial value of number n is %d
", n); n = n+ 1; printf("The value after adding 1 to the number n is %d", n); return 0; }
输出
The initial value of number n is 12 The value after adding 1 to the number n is 13
方法 2 − 使用增量运算符
此方法使用增量运算符将 1 添加到给定数字。这是将 1 添加到数字的一种快捷技巧。
示例代码
#include <stdio.h> int main(void) { int n = 12; printf("The initial value of number n is %d
", n); n++; printf("The value after adding 1 to the number n is %d", n); return 0; }
输出
The initial value of number n is 12 The value after adding 1 to the number n is 13
广告