搜索结果
找到约 81 项符合
std 的查询结果
按分类筛选
- 全部分类
- 学术论文 (6)
- 技术资料 (6)
- 软件工程 (5)
- 其他书籍 (5)
- 通讯编程文档 (4)
- 单片机开发 (4)
- 软件设计/软件工程 (4)
- 其他 (4)
- VHDL/FPGA/Verilog (4)
- 数据结构 (3)
- 源码 (3)
- 教程资料 (2)
- 通信网络 (2)
- 其他嵌入式/单片机内容 (2)
- matlab例程 (2)
- 微处理器开发 (2)
- uCOS (2)
- STL (2)
- 编译器/解释器 (2)
- 技术教程 (1)
- 技术书籍 (1)
- 模拟电子 (1)
- 嵌入式综合 (1)
- 可编程逻辑 (1)
- 嵌入式Linux (1)
- 文件格式 (1)
- 通讯/手机编程 (1)
- 教育系统应用 (1)
- 驱动编程 (1)
- 书籍源码 (1)
- 系统设计方案 (1)
- 网络 (1)
- C/C++语言编程 (1)
- Linux/uClinux/Unix编程 (1)
- 笔记 (1)
- 软件 (1)
C/C++语言编程 toj 4022源代码
#include <iostream>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
long long n;
cin>>n;
if(n%2==1)
cout<<(n*n-1)/4<<endl;
else if (n%4==0)
cout <<(n*n)/4-1<<endl;
else{
if(n==2)
cout<<1<<endl;
else{
long long k=n/2-1;
cout <<k*k+2*k-3<<endl;
}
...
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)
...
笔记 编写一个程序,要求用户输入一年12个月每月的降雨总量,并采用一个float数组存储。
程序显示:
一年内总降雨量、平均每月的降雨量、降雨量最大的月份和最小的月份。
#include<iostream>
using namespace std;
#include<stdlib.h>
int main()
..
..
..
cout<<"降雨量最小的月份是:"<<minyue<<"月 &nbsp; "<<"降雨量为:"<<min<<endl;
} ...
源码 数据结构实验
#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 "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= ...
源码 C++1000以内的素数
#include<iostream>
using namespace std;
int s=0;&nbsp;
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++;
}
}&nbsp;
int main(){
for (int k=5;k<=100;k++){
prime(k);
if(s%5==0)
cout<<'\n';
}
return 0;
} ...
技术资料 IPC-A-610H CN 2020 电子组件的可接受性国际验收标准
IPC-A-610H 2020 CN 中文版: 电子组件的可接受性IPC-A-610H是电子行业广泛采用的电子组件验收标准。IPC-A-610H标准中包含了本文件的一般更新内容,介绍了一些新型表面贴装元器件,同时删除了目标条件。 本文件在电子行业成功问世离不开来自29个国家/地区的参与者,这些参与者在本文件编制期间投入了大量的精力并贡献了宝贵 ...
技术资料 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 ...