Skip to content

Instantly share code, notes, and snippets.

@ustbgaofan
Created September 19, 2013 15:27
Show Gist options
  • Save ustbgaofan/6625199 to your computer and use it in GitHub Desktop.
Save ustbgaofan/6625199 to your computer and use it in GitHub Desktop.
daughter_son_older_than_mother
#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