088.马克思手稿中的数学题

简介: 088.马克思手稿中的数学题
#include<stdio.h>
void main()
{
    int x,y,z,count=0;
    clrscr();
    puts("****************************************************************");
    puts("*  This program is to solve an interesting math question in    *");
    puts("*                  Karl Marx's manuscript.                     *");
    puts("* The Problem is as follows: 30 persons spent 50 yuan in a     *");
    puts("* restaurant, amony them, each man spent 3 yuan, each woman    *");
    puts("* spent 2 yuan, and each child spent 1 yuan. The question is   *");
    puts("* how many men, women and children are there?                  *");
    puts("****************************************************************");
    puts(" >> The solutions are:");
    printf("   No.        Men       Women     Children\n");
    printf("---------------------------------------------\n");
    for(x=0;x<=10;x++)
    {
        y=20-2*x;                     /*x定值据(3)式求y*/
        z=30-x-y;                     /*由(1)式求z*/
        if(3*x+2*y+z==50)             /*当前得到的一组解是否满足式(2)*/
      printf(" <%2d>    |    %2d    |    %2d    |    %2d\n",++count,x,y,z);
    }
    printf("---------------------------------------------\n");
    printf(" Press any key to quit...");
    getch();
}
相关文章
|
决策智能
博弈论第十七集总结(“声誉和决斗 ”观后感)
博弈论第十七集总结(“声誉和决斗 ”观后感)
50 0
|
决策智能
博弈论第十八集总结(“最后通牒和讨价还价”的观后感)
博弈论第十八集总结(“最后通牒和讨价还价”的观后感)
228 0
|
算法
算法学习 | 与大师对话,翻阅大师手稿中的数学题
今天分享大师们遇到的有趣的数学题,探索解题的过程,寻找解决方案,以及怎样更加全面的思考问题。
140 1
|
机器学习/深度学习 人工智能
把所有的谎言献给你β(找规律数学题)
梓川咲太的面前坐着野兔先辈,作为约定,只好乖乖的打开笔记本开始学习了。 “加法符号写歪了,变成了乘法符号,在算式的第三行那个地方。”樱岛麻衣突然开口。
164 0
把所有的谎言献给你β(找规律数学题)
086.爱因斯坦的数学题
086.爱因斯坦的数学题
95 0
再学一道算法题: 食物链(带权并查集)
再学一道算法题: 食物链(带权并查集)
再学一道算法题: 食物链(带权并查集)
|
数据可视化 Python
一个关于 += 的谜题
一个关于 += 的谜题
147 0
一个关于 += 的谜题