From 0c901eeaaa3fdef2c57e940c43f7779d3f1ed521 Mon Sep 17 00:00:00 2001 From: smallkun Date: Tue, 25 Feb 2025 08:30:32 +0800 Subject: [PATCH] Auto commit --- 2207/万维C/1-答案.c | 62 --------------------------------------------- 2207/万维C/1.c | 52 +++++++++++++++++++++---------------- 2207/万维C/2.c | 22 ++++++++-------- 3 files changed, 41 insertions(+), 95 deletions(-) delete mode 100644 2207/万维C/1-答案.c diff --git a/2207/万维C/1-答案.c b/2207/万维C/1-答案.c deleted file mode 100644 index a492f3f..0000000 --- a/2207/万维C/1-答案.c +++ /dev/null @@ -1,62 +0,0 @@ -/*---------------------------------------------------------------------- - ------------------------------------------------------------------------- -ڲϳԷÿһֻ룬2һֻ룬3һֻ룬һn룬дһ㣬һм˳Էʹ˼룬룬?ע⣺вҪ֤ -ʾ룺 -n: 25 -һ13˳Է -ʹ13 -ʹ7 -ʹ5 ------------------------------------------------------------------------- -ע⣺Դ¡Ķmainиݣ - Program-End֮䡣 - Ҫɾ־򲻵÷֡ - Ҫ޸ĻɾProgram-End֮ݷ򲻵÷֡ -----------------------------------------------------------------------*/ - -#include -#include - -// ڼԷԼ롢 -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 #include -// 函数声明,用于计算吃饭的人数以及饭碗、菜碗和汤碗的数量 +// ڼԷԼ롢 int calculateDiningDetails(int n, int *riceBowls, int *vegetableBowls, int *soupBowls); int main() { int n; int riceBowls, vegetableBowls, soupBowls,people; - printf("【请输入总碗数n: 】"); + 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); + printf("һ%d˳Է\nʹ%d\nʹ%d\nʹ%d\n", people, riceBowls, vegetableBowls, soupBowls); } else { - printf("没有符合条件的组合。\n"); + printf("ûзϡ\n"); } return 0; } -// 函数定义,用于计算吃饭的人数以及饭碗、菜碗和汤碗的数量 +// 壬ڼԷԼ롢 int calculateDiningDetails(int n, int *riceBowls, int *vegetableBowls, int *soupBowls) { int x,totalBowls; /**********Program**********/ - - + for(x=3;x #include -// 动态分配内存以存储替换后的字符串 +// ̬ڴԴ洢滻ַ char* replaceSubstring(const char *str, const char *oldSubstr, const char *newSubstr) { int strLen = strlen(str); int oldLen = strlen(oldSubstr); @@ -26,26 +26,26 @@ int main() { char newSubstr[100]; char *replacedStr; - // 获取用户输入 - printf("【请输入原字符串:】"); + // ȡû + printf("ԭַ"); fgets(str, sizeof(str), stdin); - str[strcspn(str, "\n")] = 0; // 去除换行符 + str[strcspn(str, "\n")] = 0; // ȥз - printf("【请输入要替换的子串:】"); + printf("Ҫ滻Ӵ"); fgets(oldSubstr, sizeof(oldSubstr), stdin); - oldSubstr[strcspn(oldSubstr, "\n")] = 0; // 去除换行符 + oldSubstr[strcspn(oldSubstr, "\n")] = 0; // ȥз if (strstr(str, oldSubstr) == NULL) { - printf("原字符串不包含所输入的子串。\n"); + printf("ԭַӴ\n"); return 0; } - printf("【请输入替换后的子串:】"); + printf("滻Ӵ"); fgets(newSubstr, sizeof(newSubstr), stdin); - newSubstr[strcspn(newSubstr, "\n")] = 0; // 去除换行符 + newSubstr[strcspn(newSubstr, "\n")] = 0; // ȥз replacedStr = replaceSubstring(str, oldSubstr, newSubstr); - printf("【示例输出:】%s\n", replacedStr); + printf("ʾ%s\n", replacedStr); - // 释放动态分配的内存 + // ͷŶ̬ڴ free(replacedStr); return 0;