排序:上传时间 相关度 下载量 查看数

iostream 36

按分类查找:

  • 学生管理啊

    #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 ...

    /dl/513822.html

    标签: 学生

    上传时间: 2016-12-29

    上传用户:767483511

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

    程序显示: 一年内总降雨量、平均每月的降雨量、降雨量最大的月份和最小的月份。 #include<iostream> using namespace std; #include<stdlib.h> int main() .. .. .. cout<<"降雨量最小的月份是:"<<minyue<<"月 &nbsp; "<<"降雨量为:"<<min<<endl; } ...

    /dl/517028.html

    标签: float 编写 程序 用户 数组 存储 输入

    上传时间: 2018-03-27

    上传用户:shayusha

  • 数据结构实验

    #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 ...

    /dl/517413.html

    标签: 数据结构 实验

    上传时间: 2018-05-09

    上传用户:123456..

  • 数据结构实验

    #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;// ...

    /dl/517414.html

    标签: 数据结构 实验

    上传时间: 2018-05-09

    上传用户:123456..

  • 道理特分解法

    #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= ...

    /dl/517487.html

    标签: 道理特分解法

    上传时间: 2018-05-20

    上传用户:Aa123456789

  • 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; } ...

    /dl/522666.html

    标签: C++

    上传时间: 2020-06-30

    上传用户:1274636550