编写如下程序,并在机器上调试成功。程序采用菜单式选择,可以接收用户从键盘输入的五个命令(1-5),各命令功能分别为: (1)按下“1”键,完成字符串小写字母变成大写字母。 用户输入一由英文大小写字母或数字0-9组成的字符串(以回车结束),程序逐个检查字符串中各字符,将原串中小写字母变成大写字母,其他字符不变,并在屏幕上显示。用户按任一键,重做,按ESC键,返回主菜单。 (2)按下“2”键,完成找最大值(二选一)。 a.接收用户输入的可显示字符串(以回车结束),程序将其中ASCII码值最大的字符显示出来; b.接收用户输入若干个无符号8位数(以空格或逗号为分隔符,以回车结束),程序将其中最大的数显示出来。用户按任一键,重做,按ESC键,返回主菜单。 (3)按下“3”键,完成排序(二选一)。 a.接收用户输入的可显示字符串,以回车结束。程序按ASCII码值大小由大到小排序并输出显示; b.接收用户输入若干个有符号8位数(以空格或逗号为分隔符,以回车结束),程序将其中最大的数显示出来。用户按任一键,重做,按ESC键,返回主菜单。 (4)按下“4”键,显示时间。 首先提示用户对时,即用户输入时、分、秒(以空格或逗号为分隔符,以回车结束),然后,在屏幕上不断显示时间,格式为: XX(时): XX(分): XX(秒) 最好定点显示。用户按任一键,重新对时,按ESC键,返回主菜单。 (5)按下“5”键,结束程序运行,返回系统提示符。 上述题目代码,之前在网上找到过类似的可总是出问题,编译器出问题,代码运行出问题,这是完全测试过的,应该没有问题
2021-05-14 08:47:12 15.51MB 微机原理 汇编语言
1
心电信号QRS波的检测+CEEMDAN:M. B. Hossain, S. K. Bashar, A. J. Walkey, D. D. McManus, and K. H. Chon, “An Accurate QRS Complex and P Wave Detection in ECG Signals Using Complete Ensemble Empirical Mode Decomposition with Adaptive Noise Approach,” IEEE Access, vol. 7, pp. 128869–128880, 2019. # QRS-Peak-detection-in-ECG The function 'Rfrom2side' determines the QRS peak locations in ECG using CEEMDAN approach. It is advised to use a segment of ECG (1min/2min) The function takes the ECG input and sampling frequency and returns the QRS complex locations and reconstructed signal using CEEMDAN decomposition. If you use this source code please cite the following reference. M. B. Hossain, S. K. Bashar, A. J. Walkey, D. D. McManus, and K. H. Chon, “An Accurate QRS Complex and P Wave Detection in ECG Signals Using Complete Ensemble Empirical Mode Decomposition with Adaptive Noise Approach,” IEEE Access, vol. 7, pp. 128869–128880, 2019. # QRS-Peak-detection-in-ECG The function 'Rfrom2side' determines the QRS peak locations in ECG using CEEMDAN approach. It is advised to use a segment of ECG (1min/2min) The function takes the ECG input and sampling frequency and returns the QRS complex locations and reconstructed signal using CEEMDAN decomposition. If you use this source code please cite the following reference. M. B. Hossain, S. K. Bashar, A. J. Walkey, D. D. McManus, and K. H. Chon, “An Accurate QRS Complex and P Wave Detection in ECG Signals Using Complete Ensemble Empirical Mode Decomposition with Adaptive Noise Approach,” IEEE Access, vol. 7, pp. 128869–128880, 2019. If you use this source code please cite the following reference.qwerhtyulioopAwERTYUHAO1
2021-05-10 20:35:05 10KB 心电信号
1
imsdroid是以开源的可实现语言视频短信安卓项目,在局域网内通话视频质量都不错的,本代码可以直接运行
2021-05-08 20:57:49 20.71MB imsdroid android 视频 通讯
1
用matlab编写的GAN代码,亲试可以运行,适合深度学习的朋友用,代码全,可用于深度学习,就是运行时间较长,但是不影响学习使用
2021-05-08 12:22:41 2KB GAN 深度学习
1
将YUV格式转换为RGB格式的图像或视频的matlab代码 运行说明在里面
2021-05-07 20:36:07 56.73MB matlab代码 YUV RGB 格式转换
1
vfp 客房管理系统,很强大。是一本书自带光盘的。拿出来直接可以到市场上用了
2021-05-06 19:01:15 1016KB vfp 源代码 可运行
1
bezier曲线decasteljau算法程序代码,计算机运行完好 可以用记事本打开查看算法。
2021-05-02 18:35:01 1KB bezier decasteljau 程序 代码
1
研究生阶段的学习资料,里面含有word报告和matlab的代码,自己修改并注释的,非常适合初学者。代码完美运行并且算法结尾会有路径图展示。如果需要其他算法可以私信我
2021-04-29 12:15:14 130KB matlab 遗传算法 vrp问题 排序问题
1
c语言 飞机订票系统 #include //标准输入、输出头文件 #include //包含字符串函数处理头文件 #include //包含动态存储与释放函数头文件 #define N 10000 struct air //定义结构体数组 { int num; char start[20]; char over[20]; char time[10]; int count; }s[N]; int i; int m=0; #define PRINT "%-d%12s%12s%10s%12d\n",s[i].num,s[i].start,s[i].over,s[i].time,s[i].count //定义输出格式 void input(); //输入航班信息 void print(); //输出航班信息 void save(); //保存航班信息 void read(); //读取航班信息 void search(); //查找航班信息 void shanchu(); //删除航班信息 void dingpiao(); //订票信息 void tuipiao(); //退票信息 void xiugai(); //修改信息
2021-04-28 21:11:19 11KB c语言 飞机订票系统 源代码 可运行
1
此次代码为SSM宽假实现,前端为bootstrop的简单应用。其实现了登录注册、教师学生基本信息的管理,项目采用IDEA作为编译器,采用maven进行项目管理,数据库使用的是MySQL8.0。SSM框架版本在pom文件中有相关说明,适合学习SSM框架入门者使用。大佬别下载,良心代码,希望能够支持,全部可运行
2021-04-24 00:16:14 52.32MB 学生管理系统 javaWeb spring入门 Spring
1