摘要: #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; void sort(STU *pst, int n); int 阅读全文
posted @ 2020-12-31 12:33 完美且天才 阅读(41) 评论(1) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa 阅读全文
posted @ 2020-12-19 22:39 完美且天才 阅读(47) 评论(1) 推荐(1)
摘要: #include<stdio.h> const int N=3; int main(){ int a[N]={1,2,3}; int i; printf("通过数组名及下标直接访问数组元素:\n"); for(i=0;i<N;i++) printf("%d:%d\n",&a[i],a[i]); pr 阅读全文
posted @ 2020-12-16 17:23 完美且天才 阅读(70) 评论(1) 推荐(0)
摘要: //ex1 #include<math.h> #include<stdio.h> void solve(double a,double b,double c); int main(){ double a,b,c; printf("Enter a,b,c:"); while(scanf("%lf%lf 阅读全文
posted @ 2020-11-28 10:24 完美且天才 阅读(77) 评论(1) 推荐(0)
摘要: //ex1 #include<stdio.h> #include<math.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("输入 a,b,c:"); while (scanf_s("%f%f%f", &a 阅读全文
posted @ 2020-11-19 00:13 完美且天才 阅读(59) 评论(2) 推荐(0)
摘要: //ex1 #include<stdio.h> int main(){ int a=5,b=7,c=100,d,e,f; d=a/b*c; e=a*c/b; f=c/b*a; printf("d=%d,e=%d,f=%d\n",d,e,f); return 0; } d:int类型(a除b)再乘c 阅读全文
posted @ 2020-10-31 14:28 完美且天才 阅读(94) 评论(1) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> int main() { printf("我的学号是202083290258。\nAre You Ready?自信即巅峰。"); system("pause"); return 0; } #include<stdio.h> i 阅读全文
posted @ 2020-10-17 09:52 完美且天才 阅读(78) 评论(3) 推荐(0)