Write a C++ program to display all the leap years between two given years. If there is no leap year in the given period,display a suitable message. Go to the editor Note: Range of the two given years: ( 0 < year1 = year2 < 3,000

  • برمجة سي بلس بلس
  • برمجة

Write a C++ program to display all the leap years between two given years. If there is no leap year in the given period,display a suitable message.
Note: Range of the two given years: ( 0 < year1 = year2 < 3,000)

Sample Output:

Input years: 1975 - 2018
Leap years between said years:
1976
1980
1984
1988
1992
1996
2000
2004
2008
2012
2016

الأجوبة

#include <iostream>
#define range(i,a,b) for(int (i)=(a);(i)<(b);(i)++)
#define rep(i,n) range(i,0,n)
using namespace std;
 
inline bool isleap(int year){
    if(year%400==0)
        return true;
    if(year%100==0)
        return false;
    if(year%4==0)
        return true;
    return false;
}
 
int main(void){
    int a,b;
    bool space=false;
    cin >> a >> b;
    cout << "Input years: " << a << " - " << b;
    cout << "\nLeap years between said years:\n";
        if(space) puts("");
        bool ans=false;
        range(i,a,b+1) if(isleap(i)) cout << i << endl,ans=true;
        if(!ans) puts("No leap years.");
        space=true;
   
    return 0;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...