Posted on 2020-01-02 链表成绩 xlwang 29 Hits 1 Comment C/C++ 我辣鸡的c作业,非常苦恼 #include #include #define st struct student #include …
Posted on 2019-12-29 全局变量 xlwang 2 Hits NOTHING C/C++ #include int x=5; main() { void print(); int x=9999; {int x=0; pr …
Posted on 2019-12-24 斐波那契数列 xlwang 2 Hits NOTHING C/C++ 有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少 …
Posted on 2019-12-24 折半查找法 xlwang 1 Hit NOTHING C/C++ 例: 有N个数按由小到大顺序存放在一个数组中,输入一个数,要求用折半查找法找出该数是数组中第几个元素的值。如果该数不在数组中,则打 …
Posted on 2019-12-19 结构体 xlwang 0 Hits NOTHING C/C++ 例题1 有4名学生,每个学生的属性包括学号、姓名、出生日期和成绩,要求通过指针方法输出这4名学生的所有信息。 #include # …
Posted on 2019-12-17 统计成绩 xlwang 0 Hits NOTHING C/C++ 结构体 #include #include #define st struct student #include struct s …
Posted on 2019-12-17 计算器 xlwang 0 Hits NOTHING C/C++ #include #include #include void main() { float a,b,f; char c;char …
Posted on 2019-12-17 交换俩个数 xlwang 0 Hits NOTHING C/C++ 数组 #include main() { void swap(int a[2]); int a[2]; printf(" …
Posted on 2019-12-17 求三角形周长面积 xlwang 0 Hits NOTHING C/C++ #include #include main() { double s,l,a,b,c,p; printf("请输入三边 …