搜索结果

找到约 903 项符合 stRing-include 的查询结果

源码 c#简单计算器

// 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; ...
https://www.eeworm.com/dl/513825.html
查看: 35

软件 简单的计算器

// 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; ...
https://www.eeworm.com/dl/513826.html
查看: 8

源码 简单的计算器

#include "student.h"
https://www.eeworm.com/dl/513827.html
下载: 2
查看: 59

书籍 Bio Medical CMOS IC

A major societal challenge for the decades to come will be the delivery of effective medical services while at the same time curbing the growing cost of healthcare. It is expected that new concepts-particularly electronically assisted healthcare will provide an answer. This will include new devices, ...
https://www.eeworm.com/dl/514049.html
下载: 1
查看: 18

源码 java学生数据库

/*import java.util.Scanner; //主类 public class student122 {   //主方法   public static void main(String[] args){     //定义7个元素的字符数组     String[] st = new String[7];     inputSt(st); &nbsp ...
https://www.eeworm.com/dl/514408.html
下载: 2
查看: 11

源码 c语言算法排序

1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){   ...
https://www.eeworm.com/dl/514507.html
下载: 1
查看: 15

源码 点亮P10单元板单片机源程序

/*================================================================= 4扫16*16下入上出C语言程序, 低位起笔,数据反相。 预定义 **************************************************************/ #include #include //可使用其中定义的宏来访问绝对地址? bit ture=1; // 使能正反相位选择 bit false=0; / ...
https://www.eeworm.com/dl/514939.html
下载: 1
查看: 20

笔记 一个按键控制的 10 级变速跑马灯试验

在本课中,我们要用一个按键来实现跑马灯的 10 级调速。这又会涉及到键的去抖的问 题。  本课的试验结果是,每按一次按键,跑马速度就降低一级,共 10 级。  这里我们又增加了一个变量 speedlever,来保存当前的速度档次。  在按键里的处理中,多了当前档次的延时值的设置。  请看程序:  ―― ...
https://www.eeworm.com/dl/516025.html
下载: 1
查看: 60

笔记 模拟 PWM 输出控制灯的 10 个亮度级别

LED 一般是恒流操作的,如何改变 LED 的亮度呢?答案就是 PWM 控制。在一定的 频率的方波中,调整高电平和低电平的占空比,即可实现。比如我们用低电平点亮一个 LED 灯,我们假设把一个频率周期分为 10 个时间等份,如果方波中的高低电平占空比是 9:1, 这是就是一个比较暗的亮度,如果方波中高低电平占空比是 10:0,这时 ...
https://www.eeworm.com/dl/516026.html
下载: 2
查看: 77

应用设计 声明病人 Patient 类,

1. 声明病人 Patient 类,此类对象包括 name(String)、sex(char)、age(int)、weight(float)、allergies(boolean)。 声明 setName 存取及修改方法。在一个单独的类中,声明测试方法,并生成两个 Patient 对象,设置其 状态并将其信息显示在屏幕上。声明并测试 toString()方法,显示一个病人 age、sex、name 及 aller ...
https://www.eeworm.com/dl/516157.html
下载: 2
查看: 352