摘要: #include <stdio.h> int main(){ int sum = 0; int i = 0; int flag = 0; double tmp = 0; for(sum = 11; sum <= 1000; sum++) { tmp = (double)sum; for(i = 1; 阅读全文
posted @ 2023-05-24 13:57 不会JAVA的小袁 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<windows.h> int main(){ int m = 0;//红球数量 int n = 0;//白球数量 int number = 0;//可能性的次数 printf(" 红球 白球 黑球\n"); printf("\n"); for (m 阅读全文
posted @ 2023-05-24 13:50 不会JAVA的小袁 阅读(19) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int j = 0;int judge(int a[]){ for (int i = 1; i < 10; i++) { if (a[0]!=a[i]) { return 1; } } return 0;}void put(int a[]){ printf("第 % 阅读全文
posted @ 2023-05-24 13:42 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cmath>using namespace std;int main(void){ int a1,a2,a3,a4,a5,n1,n2,n3,n4,n5; float maxm=0,tem; for (a5=0;a5<3;a5++) for(a 阅读全文
posted @ 2023-05-24 13:32 不会JAVA的小袁 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#define TAXBASE 3500 typedef struct{ long start; long end; double taxrate;} TAXTABLE; TAXTABLE TaxTable[]={{0,1500,0.03},{1500,4500,0 阅读全文
posted @ 2023-05-24 13:19 不会JAVA的小袁 阅读(10) 评论(0) 推荐(0) 编辑