码迷,mamicode.com
首页 > 编程语言 > 详细

Problem A: 零起点学算法16——鸡兔同笼

时间:2018-10-04 21:38:23      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:style   eof   print   col   include   scanf   code   pre   can   

#include<stdio.h>
int main()
{
    int n,m,a,b;
    while(scanf("%d %d",&n,&m)!=EOF)
    a=(m-2*n)/2;
    b=(m-2*n)%2;
    if(a>0 && b==0)
    printf("%d %d\n",n-a,a);
    else
    printf("No");
    return 0;
}

 

Problem A: 零起点学算法16——鸡兔同笼

标签:style   eof   print   col   include   scanf   code   pre   can   

原文地址:https://www.cnblogs.com/chenlong991223/p/9743392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!