#include <iostream>
using namespace std;
int main() {
int br_year, th_year;
cin >> br_year >> th_year;
for(;;th_year++) {
if(th_year % 4 == 0 || th_year % 100 != 0 && th_year % 400 == 0) {
break;
}
cout << "Ближайший високосный год будет в " << th_year << " году, на этот момент Вам будет " << th_year - br_year << " лет.";
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main() {
int br_year, th_year;
cin >> br_year >> th_year;
for(;;th_year++) {
if(th_year % 4 == 0 || th_year % 100 != 0 && th_year % 400 == 0) {
break;
}
}
cout << "Ближайший високосный год будет в " << th_year << " году, на этот момент Вам будет " << th_year - br_year << " лет.";
return 0;
}