1.
#include <iostream>
bool czyPrzestepny(Unsigned int rok){
if(!(rok%4) && (rok%100) || !(rok%400)) return true
else return false;
}
Int main(){
Unsigned int rok;
Std:cin >> rok;
If(rok>=1 && rok<=2009)std:cout << (czyPrzestepny(rok))? ”” : ”nie”<<”przestępny”
Else std:cout << ”błędne dane”;
Return 0;
}
2.
#include <iostream>
int Najwieksza(int a,b,c){
int max=a;
if(max<b)max=b;
if(max<c)max=c;
return 0;
}
Int main(){
Int a,b,c;
Std:cin >> a>>b>>c;
std:cout << ”największa liczba:” <<Najwieksza(a,b,c);
Return 0;
}