搜索结果
找到约 156 项符合
else 的查询结果
按分类筛选
- 全部分类
- 编译器/解释器 (27)
- 源码 (17)
- 单片机编程 (12)
- 其他 (8)
- 技术资料 (7)
- 汇编语言 (5)
- matlab例程 (5)
- 人工智能/神经网络 (5)
- Linux/Unix编程 (5)
- 书籍源码 (4)
- Java编程 (4)
- 数据结构 (4)
- 加密解密 (3)
- 书籍 (3)
- 开发工具 (2)
- Internet/网络编程 (2)
- VHDL/FPGA/Verilog (2)
- 系统设计方案 (2)
- 软件工程 (2)
- 软件设计/软件工程 (2)
- 网络 (2)
- Delphi控件源码 (2)
- 数学计算 (2)
- C/C++语言编程 (2)
- 嵌入式综合 (2)
- Jsp/Servlet (2)
- 教程资料 (1)
- 可编程逻辑 (1)
- 仿真技术 (1)
- 设计相关 (1)
- 单片机开发 (1)
- SCSI/ASPI (1)
- Windows CE (1)
- Delphi/CppBuilder (1)
- 电子书籍 (1)
- CA认证 (1)
- 驱动编程 (1)
- 数值算法/人工智能 (1)
- 操作系统开发 (1)
- DSP编程 (1)
- 游戏 (1)
- 通讯编程文档 (1)
- Linux/uClinux/Unix编程 (1)
- 技术书籍 (1)
- 资料/手册 (1)
- 接口技术 (1)
- 软件 (1)
- 习题答案 (1)
- VIP专区 (1)
源码 学生成绩管理啊
#include "string.h"
#include "ctype.h"
#include "stdio.h"
search(char pd[])
{FILE *fp;
 int time=0,i=0,j=0,add[80],k=0,m;
 char *ch,
 str[900];
 m=strlen(pd);
 if((fp=fopen("haha.txt","r"))==NULL)
 {
  printf("Cannot open this file\n");
  exit(0);
 }
for( ...
源码 TM1638驱动显示例程
#define TM1638_STB                      PORTC_Bit1
#define TM1638_CLK                      PORTC_Bit2
#define TM1638_DIO_IN                DDRC_Bit3=0 ...
源码 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){
&nbsp; ...
源码 12345
/****************temic*********t5557***********************************/ &nbsp;&nbsp;
#include &nbsp; <at892051.h> &nbsp; &nbsp;
#include &nbsp; <string.h> &nbsp;&nbsp;
#include &nbsp; <intrins.h> &nbsp; &nbsp;
#include &nbsp; <stdio.h> &nbsp; &nbsp;
#define &nbsp; &nbsp;uchar &nbsp; &nbsp;unsign ...
习题答案 java入门编程合集
题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?&nbsp;&nbsp;&nbsp;
//这是一个菲波拉契数列问题
public class lianxi01 {
public static void main(String[] args) {
System.out.println("第1个月的兔子对数:&n ...
源码 数据结构实验
#include&nbsp;<stdio.h>&nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;///链式栈&nbsp;&nbsp;
&nbsp;&nbsp;
typedef&nbsp;struct&nbsp;node&nbsp;&nbsp;
{&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;data;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;struc ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...
源码 成绩查询系统
#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 ...
源码 学生成绩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 ...
书籍 pid教程
pid控制
#ifndef _PID_H
#ifndef _PID_H
#ifdef _PID_C
&nbsp;&nbsp;&nbsp; #define PID_EXT
#else
&nbsp;&nbsp;&nbsp; #define PID_EXT extern
#endif
typedef struct PID
{
&nbsp;&nbsp; &nbsp;int SetPoint;
&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &nbsp;unsigned char BitMove;
&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &n ...