Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

เพิ่ม 1 ให้กับตัวเลขที่กำหนด?


โปรแกรมสำหรับบวก 1 ให้กับตัวเลขที่กำหนดจะเพิ่มค่าของตัวแปรขึ้น 1 นี้ใช้ทั่วไปในเคาน์เตอร์

มี 2 ​​วิธีในการเพิ่มที่สามารถใช้เพื่อเพิ่มจำนวนที่กำหนดได้ 1 -

  • การเพิ่มหนึ่งให้กับตัวเลขอย่างง่าย ๆ และกำหนดให้กับตัวแปรใหม่

  • การใช้ตัวดำเนินการเพิ่มในโปรแกรม

วิธีที่ 1 - ใช้วิธีการมอบหมายใหม่

เมธอดนี้นำตัวแปรมาบวก 1 แล้วกำหนดค่าใหม่

โค้ดตัวอย่าง

#include <stdio.h>
int main(void) {
   int n = 12;
   printf("The initial value of number n is %d \n", 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);
   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