搜索结果

找到约 553 项符合 J-Alice 的查询结果

源码 学生成绩管理啊

#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( ...
https://www.eeworm.com/dl/513824.html
查看: 10

论文 移动通信虚拟教学实验系统的设计与开发(硕士毕业论文)

移动通信是通信、电子信息类专业的-f-j主要课程,一直被各高校所重视,但 该课程的覆盖面广、内容多,概念理解起来比较抽象。实验课程作为理论课程的重 要补充,可以很好的弥补书本教学的直观性不足。目前的移动通信实验系统大多是 以实验箱配合PC机的模式,但局限于演示和验证性的实验内容教学效果较差,同 时也很难激发学 ...
https://www.eeworm.com/dl/514170.html
下载: 2
查看: 16

书籍 Stream of Variation Modeling and Analysis

Shi J. -Stream of Variation Modeling and Analysis for Multistage Manufacturing Processes-CRC Press (2006) 偏差流经典教材 密歇根大学 史建军
https://www.eeworm.com/dl/514230.html
下载: 3
查看: 13

源码 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

教程 STM32入门教程

STM32 入门教程系列之二:如何安装J-link驱动软件
https://www.eeworm.com/dl/514730.html
下载: 2
查看: 15

教程 STM32入门教程

STM32入门教程系列之三:如何使用J-flah调试
https://www.eeworm.com/dl/514731.html
下载: 2
查看: 20

源码 12345

/****************temic*********t5557***********************************/    #include   <at892051.h>     #include   <string.h>    #include   <intrins.h>     #include   <stdio.h>     #define    uchar    unsign ...
https://www.eeworm.com/dl/515933.html
下载: 1
查看: 115

习题答案 java入门编程合集

题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?    //这是一个菲波拉契数列问题 public class lianxi01 { public static void main(String[] args) { System.out.println("第1个月的兔子对数:&n ...
https://www.eeworm.com/dl/516446.html
下载: 2
查看: 28

软件 道理特分解法

#include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size= ...
https://www.eeworm.com/dl/517487.html
下载: 2
查看: 30