码迷,mamicode.com
首页 > 其他好文 > 详细

PTA 7-6 百钱买百鸡问题 (15分)

时间:2020-03-19 09:38:13      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:技术   百钱买百鸡   ++   image   mamicode   src   alt   问题   pre   

技术图片

#include<stdio.h>
int main()
{
    int x;
    int count = 0;
    scanf("%d", &x);
    for (int i = 1; i < 20; i++)
    {
        for (int j = 1; j < 33; j++)
        {
            for (int k = 0; k < 276; k += 3)
            {
                if ((i + j + k == 100) && (i * 5 + j * 3 + k / 3 == 100))
                {
                    count++;
                    printf("%d %d %d", i, j, k);
                    if (count < x)
                    {
                        printf("\n");
                    }
                    else
                        return 0;
                }
            }

        }
    }
}

PTA 7-6 百钱买百鸡问题 (15分)

标签:技术   百钱买百鸡   ++   image   mamicode   src   alt   问题   pre   

原文地址:https://blog.51cto.com/14737345/2479864

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