会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
333y
博客园
首页
新随笔
联系
订阅
管理
2019年6月24日
实验七
摘要: PART1 PART2 这门课就这样结束了,考试加油。
阅读全文
posted @ 2019-06-24 22:58 333y
阅读(133)
评论(0)
推荐(0)
2019年6月9日
实验六
摘要: #include const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; }STU; // 函数声明 void input(STU s[], int n); int findMinlis...
阅读全文
posted @ 2019-06-09 17:23 333y
阅读(104)
评论(0)
推荐(0)
2019年5月26日
实验五
摘要: #include const int N=5; int binarySearch(int x[], int n, int item); int main() { int a[N]={1,3,9,16,21}; int i,index, key; printf("数组a中的数据:\n"); for(i=0;i=0) printf("%d在数组中...
阅读全文
posted @ 2019-05-26 13:02 333y
阅读(116)
评论(1)
推荐(0)
2019年4月25日
实验四
摘要: PART1 PART2 PART3 总结:在需要自己编写的部分感到非常困难,请教了其他同学。还要继续努力。
阅读全文
posted @ 2019-04-25 17:07 333y
阅读(139)
评论(0)
推荐(0)
2019年4月16日
实验三
摘要: PART1 #include <stdio.h>int main() {int number, max, min, n; n=1; printf("输入第%d个数: ", n); scanf("%d", &number); max = number; min = number; while(n<=4
阅读全文
posted @ 2019-04-16 20:42 333y
阅读(134)
评论(2)
推荐(0)
2019年3月30日
实验2
摘要: PART1:格式化输出函数printf()和格式化输入函数scanf() 2、修改后 总结:(1)整数:printf("%d") scanf("%d") (2)带小数点的数printf("%f") scanf("lf") PART2 2. PART3 1. 2.两分支if2算法流程图 PART4 s
阅读全文
posted @ 2019-03-30 23:00 333y
阅读(151)
评论(2)
推荐(0)