搜索结果
找到约 4 项符合
iomanip 的查询结果
教育系统应用 c++图书管理系统 include <iostream> #include <iomanip> #include <string> #include <
c++图书管理系统
include <iostream>
#include <iomanip>
#include <string>
#include <fstream>//输入/输出文件流类
using namespace std
const int Maxr=100 //最多的读者
const int Maxb=100 //最多的图书
const int Maxbor=5 //每位读者最多借五本书
//读者类,实现对读者的信息的描述 ...
人工智能/神经网络 #include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define
#include "iostream.h"
#include "iomanip.h"
#define N 20 //学习样本个数
#define IN 1 //输入层神经元数目
#define HN 8 //隐层神经元数目
#define ON 1 //输出层神经元数目
double P[IN] //单个样本输入数据
double T[ON] //单个样本教师数据
double W[HN][IN] //输入层至隐层权值
double V[ON][HN] //隐层至输出层权值 ...
数值算法/人工智能 BP神经网络程序,C语言源代码 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "ma
BP神经网络程序,C语言源代码
如下:
#include "iostream.h"
#include "iomanip.h"
#include "stdlib.h"
#include "math.h"
#include "stdio.h"
#include "time.h"
#include "fstream.h"
#define N 120 //学习样本个数
#define IN 3 //输入层神经元数目
#define HN 2 //隐层神经元数目
#define ON 2 //输出层神经元数目
#def ...
源码 学生管理啊
#include <iostream.h>
#include <string.h>
#include <iomanip.h>
#include "Stud.h"
Stud::Stud(){}
char *Stud::getno() &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//获取学号
{
return no;
}
char *Stud::getname() &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//获取姓名
{
return name;
}
char *Stud::ge ...