排序:上传时间 相关度 下载量 查看数

default 118

按分类查找:

  • 简单的计算器

    // 学生管理.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]; ...

    /dl/513826.html

    标签: 学生 计算器

    上传时间: 2016-12-29

    上传用户:767483511

  • photoshop入门教程

    photoshop软件(本例中使用CS5版本,当然各版本界面都大同小异) 界面篇 1 首先我们打开photoshop软件,界面就如下图所示了: 2 ...

    /dl/516271.html

    标签: photoshop 入门教程

    上传时间: 2017-12-07

    上传用户:1506034115

  • photoshop软件

    photoshop软件(本例中使用CS5版本,当然各版本界面都大同小异) 界面篇 1 首先我们打开photoshop软件,界面就如下图所示了: 2 ...

    /dl/516272.html

    标签: photoshop 软件

    上传时间: 2017-12-07

    上传用户:1506034115

  • DHT11温湿度检测

    由STC89C51单片机来控制DHT11传感器采集的温湿度的转换、1602液晶屏的显示,以及蜂鸣器的报警。

    /dl/517319.html

    标签: DHT 11 温湿度检测

    上传时间: 2018-04-27

    上传用户:luson

  • 成绩查询系统

    #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score &nbsp;&nbsp;{ &nbsp;&nbsp;float math; &nbsp;&nbsp;float english; &nbsp;&nbsp;float computer; &nbsp;&nbsp;}; struct student &nbsp;&nbsp;{ &nbsp;&nbsp;int number ...

    /dl/520134.html

    标签: 成绩查询系统

    上传时间: 2019-06-08

    上传用户:啊的撒旦

  • 学生成绩guanli

    #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score &nbsp;&nbsp;{ &nbsp;&nbsp;float math; &nbsp;&nbsp;float english; &nbsp;&nbsp;float computer; &nbsp;&nbsp;}; struct student &nbsp;&nbsp;{ &nbsp;&nbsp;int number ...

    /dl/520138.html

    标签: c语言

    上传时间: 2019-06-09

    上传用户:啊的撒旦

  • 怎样限制会员登录的次数

    获取名字判断 然后判断他是不是三次没成功,在用户数据的数据库表中,加个字段 以记录今天的失败登陆次数目! 再加个记录临时时间的字段~~~~~~~~! 当一个用户当天登陆第一次的时候,自动更新时间字段里的时间数据,用语句实现只更新一次,如果时间字段里的数据与服务器系统时间相同就不更新了~~~~~~!《还有就是如果不是当 ...

    /dl/520978.html

    标签: 怎样限制会员登录的次数

    上传时间: 2019-11-12

    上传用户:aaaaaab

  • STC8单片机资料

    STC单片机资料 请用逗号分隔标签 * 资料描述:

    /dl/521061.html

    标签: STC8 单片机资料

    上传时间: 2019-12-02

    上传用户:hjd0303

  • 二叉树子系统

    #include<stdio.h> #define TREEMAX 100 typedef struct&nbsp; BT { char data; BT *lchild; BT *rchild; }BT; BT *CreateTree(); void Preorder(BT *T); void Postorder(BT *T); void Inorder(BT *T); void Leafnum(BT *T); void Nodenum(BT *T); int TreeDepth(BT *T); int count=0; void main() { BT *T=NULL; char ...

    /dl/522520.html

    标签: 二叉树 子系统

    上传时间: 2020-06-11

    上传用户:ccccy

  • 数组子系统

    #include <stdio.h> #include <stdlib.h> #define SMAX 100 typedef struct SPNode { int i,j,v; }SPNode; struct sparmatrix { int rows,cols,terms; SPNode data [SMAX]; }; sparmatrix CreateSparmatrix() { sparmatrix A; printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):"); scanf("%d, ...

    /dl/522521.html

    标签: 数组 子系统

    上传时间: 2020-06-11

    上传用户:ccccy