Skip to content
Snippets Groups Projects
Commit 800b64c8 authored by Mikołaj Suszek's avatar Mikołaj Suszek
Browse files

Upload New File

parent 08ea13e7
Branches
No related merge requests found
#include <stdio.h>
#include <stdlib.h>
int main(){
printf("podaj liczbe\n");
int x ;
scanf("%i", &x);
if (x%2==0) {
printf("liczba parzysta\n");
}
else {
printf("liczba nieparzysta\n");
}
return 0;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment