登录
首页 » 文档处理 » 算法分析实验报告:大数相乘程序,调试成功

算法分析实验报告:大数相乘程序,调试成功

于 2023-06-28 发布 文件大小:9.79 kB
0 156
下载积分: 2 下载次数: 1

代码说明:

算法分析实验报告:大数相乘程序,调试成功-algorithm analysis experiment : Large Numbers multiply procedures, debug success

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

发表评论

0 个回复

  • Qt多编辑器
    本文将介绍怎样用Qt做一个简单的多文档编辑器,该实验的过程中主要涉及到Qt窗口的设计,菜单栏(包括右击菜单),工具栏,状态栏,常见的文本文件等操作。参考资料为网址上的一个例子:http://www.yafeilinux.com/ 本来是在ubuntu下做这个实验的,可是一开始建立菜单栏等时,里面用的是中文,运行后中文就是不显示.在网上找了2天的办法,各种手段都试过了,什么编码方式啊,什么实用QTextCodec这个类啊都试过了,没成功。很不爽,暂时还是转到windows下吧。在ubuntu下只是简单的设计了该程序的界面,然后把那些代码弄到windows下后,打开main.pp文件后出现直接在main.cpp中出现 了 could not decode "main.cpp" with "System"-encoding这种错误提示,发现在这个源文件中不能输入中文(比如说注释的时候想用中文注释).但是在同一个工程的其它cpp文件中就可以输入中文.看了下其它的cpp文件的encoding也是System的.误解,又是编码问题!!
    2022-09-25 00:40:03下载
    积分:1
  • 通信网2 全了,一共6个教程
    通信网2 全了,一共6个教程-communications network throughout the 2, a total of six Guide
    2022-05-09 03:31:09下载
    积分:1
  • Broadcasting Network Overview, network broadcasting technology, network radio, I...
    本文介绍了网络广播概况、网络广播技术、网络广播方式、网络广播软件、网络广播的相关协议、网络广播软件技术、网络广播的技术难点与解决措施和网络广播的发展趋势。-Broadcasting Network Overview, network broadcasting technology, network radio, Internet radio software, network broadcasting the related agreements, the network broadcasting software technology, network broadcasting technical difficulties and solutions and network broadcasting trends.
    2023-05-04 06:40:03下载
    积分:1
  • C#知识库是在学习C#时积累的一些知识。本软件用C#编写,运行需要Microsoft .NET框架支持。打开树状节点,双击可查看知识
    C#知识库是在学习C#时积累的一些知识。本软件用C#编写,运行需要Microsoft .NET框架支持。打开树状节点,双击可查看知识-C# knowledge library is when studies C# accumulates. This software compiles with C#, the movement needs the Microsoft NET frame support. Opens the tree shape pitch point, double-clicks may examine the knowledge
    2023-03-20 22:50:03下载
    积分:1
  • 本ppt介绍了多层C/S型数据库应用,多层数据库应用的结构,典型的三层C/S结构,B/S型数据库应用,典型的B/S结构(三层),结合三层C/S的B/S结构(四层...
    本ppt介绍了多层C/S型数据库应用,多层数据库应用的结构,典型的三层C/S结构,B/S型数据库应用,典型的B/S结构(三层),结合三层C/S的B/S结构(四层),使用多层分布式应用结构的优势,高可靠性的多层分布式结构等方面的内容-ppt of the multi-storey C/S database application, the multilayer structure of the database application, the typical three-tier C/S, B/S database application, a typical B/S (three), the combination of the three-tier C/S B/S structure (four), the use of multi-storey structure of the distributed application advantages, high reliability distributed multi-storey structure of the content
    2022-03-02 15:51:47下载
    积分:1
  • operating system Exercises! Yes to the teachers, perhaps useful for all!
    操作系统期末复习题!是老师给的,也许对大家有用哦!-operating system Exercises! Yes to the teachers, perhaps useful for all!
    2023-01-11 06:35:03下载
    积分:1
  • Sumatra PDF轻量级PDF阅读器提供源码下载
    应用背景Sumatra PDF最新版本支持打开PDF, ePub, MOBI, XPS, DjVu, CHM, CBZ 和 CBR 格式关键技术 Sumatra PDF 由下列两个函数库组成:MuPDF - PDF函数库,Poppler - PDF函数库。 Sumatra PDF的设计风格极简单。软件的安装档案体积小,只有大约1MB,比起Adobe Reader的安装档案27.5MB小很多,启动快。最新版本(1.9)拥有63种语言界面,其携带版又分两个可执行档SumatraPDF-no-MuPDF.exe(1.7M)及SumatraPDF.exe(4.24M)。在PortableApps网站上,也有提供可携带版的Sumatra PDF,让使用者可以将它存在USB优盘、iPod、可移动硬盘、CD上,方便使用。
    2023-08-06 00:05:06下载
    积分:1
  • 看门狗,中名称为看门狗,全称是看门狗定时器,L。
    watchdog,中文名称叫做“看门狗”,全称watchdog timer,从字面上我们可以知道其实它属于一种定时器。-watchdog, the Chinese name called watchdog , the full name of watchdog timer, literally a matter of fact we can know that it belongs to a timer.
    2022-09-02 15:05:03下载
    积分:1
  • 定义一个车(vehicle)基类,有Run、Stop等成员函数,由此派生出自行车(bicycle)类、汽车(motorcar)类,从bicycle和motorc...
    定义一个车(vehicle)基类,有Run、Stop等成员函数,由此派生出自行车(bicycle)类、汽车(motorcar)类,从bicycle和motorcar派生出摩托车(motorcycle)类,它们都有Run、Stop等成员函数。在main()函数中定义vehicle、bicycle、motorcar、motorcycle的对象,调用其Run()、Stop()函数,观察其执行情况。再分别用vehicle类型的指针来调用这几个对象的成员函数,看看能否成功;把Run、Stop定义为虚函数,再试试看。-The definition of a car (vehicle) base class, with Run, Stop and other member functions, thus derived a bike (bicycle), automobiles (motorcar) class, derived from the bicycle and motorcar motorcycle (motorcycle) class, they all Run , Stop and other member functions. In the main () function is defined in the vehicle, bicycle, motorcar, motorcycle object, call its Run (), Stop () function is to observe its implementation. Each with a pointer with the vehicle type to call the member functions of these objects to see if successful the Run, Stop is defined as virtual functions, try again.
    2022-08-11 22:22:15下载
    积分:1
  • 智能型动态图像追踪自控车,智能追踪程序!
    智能型动态图像追踪自控车,智能追踪程序!-Intelligent dynamic image tracking controlled cars, intelligent tracking program!
    2023-01-18 21:20:04下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载