12 2021 档案

摘要://实验内容: //在待查找序列中查询指定的数据元素 #include<stdio.h> #include<stdlib.h> //函数声明 int main() { //定义能存储5个整数的一维数组,初始化为3,5,6,8,9 int data[5]={3,5,6,8,9}; //提示用户输入要查 阅读全文
posted @ 2021-12-09 10:26 东北最后深情 阅读(51) 评论(0) 推荐(0)
摘要:/本次课任务,从文本文件中读入单词列表,然后显示在屏幕上 #include<stdio.h> #include<stdlib.h> #include<iostream> #include<cstring> using namespace std; //子函数声明 #define INITSIZE 1 阅读全文
posted @ 2021-12-07 07:33 东北最后深情 阅读(44) 评论(0) 推荐(0)