登录
首页 » Asm » final

final

于 2020-07-01 发布 文件大小:3KB
0 252
下载积分: 1 下载次数: 12

代码说明:

  1.写一个程序,它先接收一个字符串,然后显示其中数字符的个数、英文字母的个数和字符串的长度。 2.模拟密码输入:假设数据库中有密码5201314,用户输入一个字符串,显示的时候全都以*出现,然后判断用户输入的字符串是否与数据库中密码相同,若相同,输出“Password Right!”,否则输出 “Password Error!” 3.写一个程序,它先接收一个字符串,然后抽去其中的空格,最后按相反的顺序显示这个改变后的字符串。 4.找出负数的个数 5.求阶乘(1. Write a program that first receives a string and then displays the length in which the number of characters and English letters and the number of strings. 2. Analog password: 5201314 suppose password, the user enters a string of all time display to* appear, and then determine if the string entered by the user and the same password , if the same output Password Right! otherwise, output Password Error! 3. Write a program, it first receives a string, and then removing all spaces, and finally display the string in reverse order after this change. 4. Find the number of negative 5. factorial)

文件列表:

1.final0.asm,2772,2015-05-31
2.final1.asm,1616,2015-06-01
3.final2.asm,1350,2015-06-01
4.N_NE.ASM,298,2015-04-09
5.FACT.asm,244,2015-04-10

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 源代码:B+算法,NTFS的排序算法
    运用B+数算法,实现树性存储,探索ntfs的存储算法(use several algorithms to achieve sexual storage tree, explore ntfs storage algorithm)
    2004-12-14 14:05:52下载
    积分:1
  • Serial Communication programming, java language versions, and serial communicati...
    串口通讯编程,java 语言版本的,串口通讯编程,java 语言版本的-Serial Communication programming, java language versions, and serial communication programming, java language versions of
    2022-01-31 03:00:12下载
    积分:1
  • 衍射
    实现衍射仿真的三种方法,卷积法 积分法 和角谱法(Three Methods for Realizing Diffraction Simulation)
    2019-04-21 10:53:01下载
    积分:1
  • the software in peer
    本软件要在网络中实现点对点的实时对话,主要的工作大约有: A).软件界面的实现。 B).两台主机通过Socket进行通信的实现。 C).如何从本机接收到要发送给对方的消息与如何接收到从对方来的消息并显示的过程。 D).进行异常处理。-the software in peer-to-peer networks to achieve real-time dialogue, the main work around : A). Software interface is achieved. B). Two mainframe through Socket communication is achieved. C). How receive from the machine to be sent to the other party and how to receive news from the other side of the news and display process. D). For Exception Handling.
    2022-04-12 10:02:14下载
    积分:1
  • DataPro
    采用MFC框架,输入相应函数,画出函数曲线(Draw the curves according to the function you put in.)
    2015-03-07 22:04:03下载
    积分:1
  • portdetect2
    portdetect for delphi by friendlynames
    2009-09-20 09:36:06下载
    积分:1
  • ARMVI_FTPServer
    wince 下ftp 服务,是wince下ftp服务器端得工具。挺好的东西!(wince under the ftp service is wince under the ftp server-side too tool. Quite good stuff!)
    2009-09-27 11:30:32下载
    积分:1
  • network communication procedures, can transfer files and image files, mainly for...
    网络通信程序,可以进行文件传输和图像文件显示,主要用于与嵌入式目标系统文件传输-network communication procedures, can transfer files and image files, mainly for embedded target system with file transfer
    2023-04-10 23:25:03下载
    积分:1
  • 计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP...
    计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP和TCP 等等。计算这些校验和的算法称为网际校验和算法,简单来说就是:把被校验的数据16位进行累加,然后取反码,若数据字节长度为奇数,则数据尾部补一个字节的0以凑成偶数。 由于从输入文件读入的数据不能直接满足计算校验和的条件,所以首先对从文件读入缓冲区的数据进行预处理,即读入缓冲区时忽略空格。由于累加是按16位进行的,所以每次从缓冲区中读出4个字符,并将字符转换成对应的16进制数字,如此依次累加,直至数据全部读完。 还有一种情况,即如果数据长度为奇数个字节,则需要判断,并补0累加。程序中利用的是缓冲区长度计数器i和当前读取到计数器j判断数据长度是否为奇数。即如果数据长度为偶数,则读完数据时当前读取到计数器j的值应与缓冲区长度i相等,而如果数据长度为奇数,则读完数据时,当前读取到计数器j>缓冲区长度i,此时需将缓冲区中剩余的两个字符读出,并补0,转换成相应16进制数以后参与累加。 当累加结束后,将累加和的16位以上数据位移下再进行一次累加,并对最后累加和取反即得所求校验和。 -calculated checksum checksum algorithm Description : To ensure the network transmission of data reliability, in many of the agreements are set up and calibration, for example : IPv4, ICMPv4, IGMPV4, ICMPv6. UDP and TCP so on. Calculating checksum algorithm called the Internet checksum algorithm, the simple answer is : as has been the calibration data for 16 cumulative, and then take the anti-code, if the data byte length of the odd, data will make up the tai
    2022-01-26 06:39:03下载
    积分:1
  • Ping server and report in Windows XP.
    Ping server and report in Windows XP.
    2022-03-15 05:19:27下载
    积分:1
  • 696516资源总数
  • 106618会员总数
  • 4今日下载