12 2020 档案

摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 阅读全文
posted @ 2020-12-25 12:42 lyΠ 阅读(65) 评论(2) 推荐(0)
摘要:#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] 阅读全文
posted @ 2020-12-18 12:23 lyΠ 阅读(46) 评论(0) 推荐(0)
摘要:// 一元二次方程求解 (函数实现方式) // 重复执行, 直到按Ctrl+Z结束 #include <math.h> #include <stdio.h> // 函数声明 void solve(double a, double b, double c); // 主函数 int main() { d 阅读全文
posted @ 2020-12-03 17:15 lyΠ 阅读(74) 评论(0) 推荐(0)