搜索结果

找到约 119 项符合 mil-std 的查询结果

Linux/uClinux/Unix编程 c语言程序源

#include <iostream> using namespace std; class Student { public: Student(int, int); int num; int grade; }; Student::Student(int n, int g) { num = n; grade = g; } int maxGradeIndex(Student* s) { int maxGrade, index = 0, i = 0; maxGrade = s[0].grade; for (i = 0; i<5; i++) { if (s[i].grade > maxGrade) ...
https://www.eeworm.com/dl/510573.html
下载: 1
查看: 29

软件 工程单位换算

mil mm,db 倍数,米每秒,千米每小时,等单位之间互相换算 电阻并联计算
https://www.eeworm.com/dl/515827.html
下载: 1
查看: 40

笔记 编写一个程序,要求用户输入一年12个月每月的降雨总量,并采用一个float数组存储。

程序显示: 一年内总降雨量、平均每月的降雨量、降雨量最大的月份和最小的月份。 #include<iostream> using namespace std; #include<stdlib.h> int main() .. .. .. cout<<"降雨量最小的月份是:"<<minyue<<"月   "<<"降雨量为:"<<min<<endl; } ...
https://www.eeworm.com/dl/517028.html
下载: 3
查看: 1049

源码 数据结构实验

#include <stdio.h>   #include <stdlib.h> ///链式栈      typedef struct node   {       int data;       struc ...
https://www.eeworm.com/dl/517413.html
下载: 2
查看: 48

源码 数据结构实验

#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;// ...
https://www.eeworm.com/dl/517414.html
下载: 2
查看: 50

软件 道理特分解法

#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

技术资料 LVDS接口标准

LVDS接口标准,LVDS-std-TIA-EIA-644-A-2001,描述了LVDS的电气特性等。
https://www.eeworm.com/dl/517980.html
下载: 5
查看: 66

源码 C++1000以内的素数

#include<iostream> using namespace std; int s=0;  int prime(int x){ int i,p=1; for(i=2;i<=x/2;i++){ if(x%i==0){ p=0; break; } } if(p!=0){ cout<<x<< " "; s++; } }  int main(){ for (int k=5;k<=100;k++){ prime(k); if(s%5==0) cout<<'\n'; } return 0; } ...
https://www.eeworm.com/dl/522666.html
查看: 59

技术资料 IPC-A-610H CN 2020 电子组件的可接受性国际验收标准

IPC-A-610H 2020 CN 中文版: 电子组件的可接受性IPC-A-610H是电子行业广泛采用的电子组件验收标准。IPC-A-610H标准中包含了本文件的一般更新内容,介绍了一些新型表面贴装元器件,同时删除了目标条件。 本文件在电子行业成功问世离不开来自29个国家/地区的参与者,这些参与者在本文件编制期间投入了大量的精力并贡献了宝贵 ...
https://www.eeworm.com/dl/746272.html
下载: 1
查看: 1337

技术资料 7寸RGB接口电容触摸屏GT911模块软硬件技术资料+STM32单片机软件工程源码

7寸RGB接口电容触摸屏GT911模块软硬件技术资料+STM32单片机软件工程源码:1-原理图_尺寸图_封装库2-配套程序3-参考资料5_7寸液晶屏与各开发板的接线方式.xls关于触摸相关程序说明.pdf7.0-11SPEC(STD-TN92).pdfgt91x编程指南.pdf其他电容触控芯片GT911_数据手册2013.pdf触摸屏主机端调试指南.pdf ...
https://www.eeworm.com/dl/746880.html
下载: 6
查看: 4850