Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void)
- {
- double m,f=300,mp;
- printf("현재 존제하는 수컷의 몇마리? : ");
- scanf("%lf", &m);
- mp = m/f;
- if(mp>=0.7) {printf("암수조정이 필요합니다.%lf\n",mp); return 0;}
- else {printf("참평화로운 그곳.%lf\n",mp); return 0;}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement