Popular posts from this blog
জোড় নাকি বিজোড় সংখ্যা নির্ণয়ের এলগরিদম ও ফ্লোচার্ট
একটি বছর লিপ-ইয়ার কিনা তা নির্ণয়ের জন্য সি ভাষায় প্রোগ্রাম
#include<stdio.h> #include<conio.h> int main() { clrscr(); Int y; printf("Enter any year:"); scanf("%d",&y); if(y%400==0) printf("\n It is Leap Year."); else if (y%100!=0 && y%4==0) printf("\n It is Leap year."); else printf("\n It in not leap year."); getch(); } Copy code from here: #include #include int main() { Int y; printf("Enter any year:"); scanf("%d",&y); if(y%400==0) printf("\n It is Leap Year."); else if (y%100!=0 && y%4==0) printf("\n It is Leap year."); else printf("\n It in not leap year."); getch(); }


This comment has been removed by the author.
ReplyDeleteThanks 😊
Delete