Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {int c,pom,par=0,dod=0,podz=0, i;
- printf("Podaj ilew liczb chcesz wprowadzic");
- scanf("%d",&c);
- for(i=1;i<c;i++){
- printf("podaj liczbe");
- scanf("%d",&pom);
- if(pom%2==0)par++;
- if(pom>0)dod++;
- if(pom%5==0)podz++;
- }
- printf("podales %d liczb parzystych %d liczb dodatnich i %d liczb podzielnych przez 5",par,dod,podz);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement