摘要: ``` #define _CRT_SECURE_NO_WARNINGS #include main() { int x, y, z, count = 1; printf("可能的兑换方法如下:\n"); for (x = 0; x <= 50; x += 10)/*x为1元硬币钱数,其取值为0,10 阅读全文
posted @ 2023-05-22 20:36 258333 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ``` #define _CRT_SECURE_NO_WARNINGS #include main() { int x, y, z, number = 0; printf(" Men Women Children\n"); /*将变量x的可能取值依次代入方程组*/ for (x = 0; x <= 阅读全文
posted @ 2023-05-22 20:35 258333 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ``` #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include<math.h> main() { double sum = 0; /*定义double型变量sum存放累加和*/ int i; /*使用循环求累加和*/ for (i = 阅读全文
posted @ 2023-05-10 21:11 258333 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> //int a[14]; //main() //{ // int i, j = 1, n; // printf("魔术师手中的牌原始次序是:\n"); // for (i = 1; i <= 13; 阅读全文
posted @ 2023-05-10 21:10 258333 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int N, sum, i; /* while(scanf("%d", &N) != EOF)*/ while(scanf("%d", &N) != 0) //输入N值,若 阅读全文
posted @ 2023-05-08 21:01 258333 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> void Up(int speed[]) { int i; for (i = 4; i > 0; i--) { if (speed[i] == 10) { speed[i - 1]++; speed 阅读全文
posted @ 2023-05-08 21:00 258333 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> ////直接计算 //int main() //{ // int j; //第几次卖 // int x = 11; //鱼的条数 // for (j = 5; j >= 2; j--) // { / 阅读全文
posted @ 2023-05-04 21:30 258333 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int a; //红 int b; //白 int c; //黑 int n = 1; //取法个数 printf(" 红 白 黑\n"); for (a = 0; a <= 3; a++) { for (b = 0; b <= 3; 阅读全文
posted @ 2023-04-27 21:57 258333 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int j = 0; int judge(int sweet[]) { int i; for (i = 0; i < 10; i++) { if (sweet[0] != sweet[i]) return 1; } return 0; } void print( 阅读全文
posted @ 2023-04-26 14:30 258333 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include<math.h> int main() { int x1, x2, x3, x5, x8, y1, y2, y3, y5, y8; double max = 0.0, result; for (x8 = 0; x8 <= 2; x8++) for 阅读全文
posted @ 2023-04-25 12:14 258333 阅读(8) 评论(0) 推荐(0) 编辑