Auto commit

This commit is contained in:
smallkun 2025-02-25 08:29:45 +08:00
parent 0fe5855aea
commit 5e7ef30e2c

62
2207/万维C/1-答案.c Normal file
View File

@ -0,0 +1,62 @@
/*----------------------------------------------------------------------
------------------------------------------------------------------------
23n个碗使?
n: 25
13
使13
使7
使5
------------------------------------------------------------------------
main或其它函数中给出的内容
Program-End之间填入若干语句
Program-End之外的内容否则不得分
----------------------------------------------------------------------*/
#include <stdio.h>
#include <math.h>
// 函数声明,用于计算吃饭的人数以及饭碗、菜碗和汤碗的数量
int calculateDiningDetails(int n, int *riceBowls, int *vegetableBowls, int *soupBowls);
int main() {
int n;
int riceBowls, vegetableBowls, soupBowls,people;
printf("【请输入总碗数n: 】");
scanf("%d", &n);
// 调用函数计算吃饭的人数以及饭碗、菜碗和汤碗的数量
people = calculateDiningDetails(n, &riceBowls, &vegetableBowls, &soupBowls);
// 输出结果
if (people!= -1) {
printf("一共有%d人吃饭\n使用了%d个饭碗\n使用了%d个菜碗\n使用了%d个汤碗\n", people, riceBowls, vegetableBowls, soupBowls);
} else {
printf("没有符合条件的组合。\n");
}
return 0;
}
// 函数定义,用于计算吃饭的人数以及饭碗、菜碗和汤碗的数量
int calculateDiningDetails(int n, int *riceBowls, int *vegetableBowls, int *soupBowls) {
int x,totalBowls;
/**********Program**********/
for(x=3;x<n;x++){//n为碗的总数 x为当前吃饭人数
*riceBowls = x;//饭碗数量等于人数
*vegetableBowls = x%2==0?x/2:x/2+1;//菜碗数量计算 每2人一个碗不足2人也要有碗
*soupBowls = x%3==0?x/3:x/3+1;//汤碗数量计算
totalBowls = *riceBowls + *vegetableBowls + *soupBowls;
if(totalBowls == n){
return x;
}
}
return -1;
/********** End **********/
}