Created
September 19, 2013 15:27
-
-
Save ustbgaofan/6625199 to your computer and use it in GitHub Desktop.
daughter_son_older_than_mother
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
int s=8,d=10,m=35; | |
int u=0; | |
for(;u<20;u++) | |
{ | |
if(s+d+2*u > m+u) | |
{ | |
printf("%d",u); | |
break; | |
} | |
} | |
getchar(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment