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

โปรแกรมตรวจสอบว่าปีที่กำหนดเป็นปีอธิกสุรทินในภาษา C . หรือไม่


ปีอธิกสุรทินมี 366 วัน ปีปกติมี 365 วัน ภาระกิจตรวจสอบผ่านโปรแกรมว่าปีที่กำหนดเป็นปีอธิกสุรทินหรือไม่

ตรรกะของมันคือการตรวจสอบว่าปีนั้นหารด้วย 400 หรือ 4 แต่ถ้าตัวเลขนั้นไม่หารด้วยจำนวนใดก็จะเป็นปีปกติ

ตัวอย่าง

Input-: year=2000
Output-: 2000 is a Leap Year

Input-: year=101
Output-: 101 is not a Leap year

อัลกอริทึม

Start
Step 1 -> declare function bool to check if year if a leap year or not
bool check(int year)
   IF year % 400 = 0 || year%4 = 0
      return true
   End
   Else
      return false
   End
Step 2 -> In main()
   Declare variable as int year = 2000
   Set check(year)? printf("%d is a Leap Year",year): printf("%d is not a Leap Year",year)
   Set year = 10
   Set check(year)? printf("%d is a Leap Year",year): printf("\n%d is not a Leap Year",year);
Stop

ตัวอย่าง

#include <stdio.h>
#include <stdbool.h>
//bool to check if year if a leap year or not
bool check(int year){
   // If a year is multiple of 400 or multiple of 4 then it is a leap year
   if (year % 400 == 0 || year%4 == 0)
      return true;
   else
      return false;
}
int main(){
   int year = 2000;
   check(year)? printf("%d is a Leap Year",year): printf("%d is not a Leap Year",year);
   year = 101;
   check(year)? printf("%d is a Leap Year",year): printf("\n%d is not a Leap Year",year);
   return 0;
}

ผลลัพธ์

2000 is a Leap Year
101 is not a Leap Year