#include <stdio.h>
int main() {
int y;
printf("Enter a year:");
scanf("%d",&y);
if(y%4==0)
{
printf("%d is a leap year",y);
}
else
{
printf("%d is not a leap year",y);
}
}
How to Combat Overthinking or Negative Thoughts? 1. Don’t Fight Your Thoughts Trying to suppress or control negative thoughts often backfire...
No comments:
Post a Comment