Computer >> Máy Tính >  >> Lập trình >> lập trình C

Chương trình kiểm tra xem một năm nhất định có phải là năm nhuận trong C

Năm nhuận có 366 ngày trong khi một năm bình thường có 365 ngày và nhiệm vụ là kiểm tra thông qua chương trình xem năm đã cho có phải là năm nhuận hay không.

Logic của nó có thể thông qua việc kiểm tra xem năm chia cho 400 hay 4 nhưng nếu số đó không chia cho một trong hai số thì đó sẽ là năm bình thường.

Ví dụ

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

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

Thuật toán

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

Ví dụ

#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;
}

Đầu ra

2000 is a Leap Year
101 is not a Leap Year