登录
首页 » Windows开发 » 相当不错的C++ 基本数据和输入输出课件

相当不错的C++ 基本数据和输入输出课件

于 2022-01-26 发布 文件大小:46.44 kB
0 159
下载积分: 2 下载次数: 1

代码说明:

相当不错的C++ 基本数据和输入输出课件-Fairly good C++ Basic input and output data and courseware

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

发表评论

0 个回复

  • service manual for tv14pv202/07
    service manual for tv14pv202/07
    2022-02-28 17:28:18下载
    积分:1
  • 步骤语言参考手册,是一个对象
    STEP Express语言参考手册,是一个面向对象的建模语言,在机械产品设计中应用非常广泛-STEP Express language reference manual, is an object-oriented modeling language, the design of mechanical products in a wide range of applications
    2022-04-02 11:27:29下载
    积分:1
  • Source are in the Windows Server 2003 under the developed procedures to test the...
    源程序都是在Windows Server 2003下开发的,程序测试环境为Windows Server 2003。用户只有在Windows Server 2003下正确配置程序所需的运行环境后,软件开发平台如下: 操作系统:Windows Server 2003; 数 据 库:SQL Server 2000、SQL Server 2005、Access 2003; 开发环境:Microsoft Visual Studio 2005; 分 辨 率:最佳效果1024×768;-Source are in the Windows Server 2003 under the developed procedures to test the environment for Windows Server 2003. Users only in Windows Server 2003 under the correct procedures needed to configure the operating environment, the software development platform are as follows: Operating System: Windows Server 2003 Database: SQL Server 2000, SQL Server 2005, Access 2003 development environment: Microsoft Visual Studio 2005 Resolution: best 1024 × 768
    2022-03-15 00:01:24下载
    积分:1
  • ie工具栏源码,非常实用,可以修改为自己的工具栏
    ie工具栏源码,非常实用,可以修改为自己的工具栏-Toolbar source ie, very practical, you can modify for their own toolbars
    2022-02-11 20:17:31下载
    积分:1
  • 它可供初学Turbo c 的人使用,其中个文件独立,内容是用中断写点、读点、填充等。...
    它可供初学Turbo c 的人使用,其中个文件独立,内容是用中断写点、读点、填充等。-Turbo c for the beginners to use, which documents the independent, as is interrupted to write, read, fill in the blanks.
    2022-03-26 02:01:28下载
    积分:1
  • 时间表管理
    时间表管理系统的自动化完成学校和学院时间表管理系统,以及工资管理系统
    2022-07-18 14:13:29下载
    积分:1
  • 带音乐播放功能的自动关机程序。可以按时间及时长选择关机,可最小化为幽灵图标...
    带音乐播放功能的自动关机程序。可以按时间及时长选择关机,可最小化为幽灵图标-music playback functions with the automatic shutdown procedures. Can be a long time to choose a timely shutdown, the smallest icon into ghost
    2022-07-01 22:48:09下载
    积分:1
  • 获得焦点的窗口和窗口的句柄
    应用背景通过使用这个应用程序,您可以轻松地获得标题和当前焦点的窗口句柄的句柄。在这个项目中我们必须使函数调用user32.dll是Windows的API的一部分。两种功能,我们将使用:getforegroundwindow() -得到处理和了解处理我们可以称getwindowtext()获得窗口的标题。关键技术在我们进入代码之前,让我们先添加2个标签,2个文本框和一个计时器。相应地将所有这些名称命名,设置定时器的时间间隔,当然,允许它。现在的代码。首先,我们定义我们的使用报表:使用系统;使用系统;使用system.windows.forms;使用system.runtime.interopservices;我们需要一个命名空间,所以我们可以使用dllimport。然后我们宣布我们的Windows API函数使用dllimport: ; ; ; ; ; ; ;[ dllimport(“user32。dll”)]静态extern int getforegroundwindow();【dllimport(“user32。dll”)]静态extern int GetWindowText(int HWND,StringBuilder文本,int数);最后,我们插入下面的代码,在计时器的滴答声(双按您的定时器在设计视图)事件: ; ; ; ; ; ; ; ; ; ; ; ;const int CHR = 256; ; ; ; ; ; ; ; ; ; ; ;int处理= 0; ; ; ; ; ; ; ; ; ; ; ;StringBuilder缓冲=新的StringBuilder(CHR); ; ; ; ; ; ; ; ; ; ; ;getforegroundwindow()处理=;&n
    2023-04-09 00:00:03下载
    积分:1
  • C++常用数值算法集2
    C++常用数值算法集2-C Numerical Algorithms used two sets
    2022-02-20 17:02:35下载
    积分:1
  • Description: 对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记...
    Description: 对整型有序关键码序列进行折半查找,待排序序列以数组存储。如果找到待查记录,返回找到的位置下标,并删除该关键码记录;如果没找到待查记录,返回0,并将待查记录插入到适当位置,即该查找属于动态查找。输出查找过程中每一轮的low,mid,high 值,以及与给定值相比较的关键码值,并输出最后找到的位置,及变化后的数组。 注意:该数组为整型,数组中关键码存储位置为r[1]~r[n],r[0]留作它用,且关键码个数大于4. Input Format: 第一行输入数组中记录个数n 第二行输入n个有序的整型关键码,以空格隔开 接下来输入三个待查关键码,每个关键码占一行 Output format: 对于每个关键码,分别输出: 找到给定值之前的每一轮的low,mid,high及相比较的待查找序列中的关键码,以空格隔开 接下来一行输出查找到的位置 接下来一行输出变化后的待查找序列 -Description: The key codes for integers ordered sequence of binary search until the sorting sequence to an array of storage. If you find a complete set of records, returns to find the location of the next standard, and delete the key code is recorded if not find a complete set of records, returns 0, and a complete set of records inserted into the appropriate location, that is, the search was part of search. Find out the process for each one of the low, mid, high value, as well as compared to the value given the key code value and output of the last to find the locat
    2023-05-15 19:40:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载