Skip to content
Snippets Groups Projects
Commit 8c48bbec authored by Kacper Śmieżewski's avatar Kacper Śmieżewski
Browse files

Upload New File

parent 8c9e1164
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Podaj liczbe: ");
int x;
scanf("%i",&x);
if(x%2==0){
printf("liczba jest parzysta\n");
}else{
printf("liczba jest 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