求c++大神帮我看看哪里错了 显示16个错误
#include<iostream>
using namespace std;
class manager
{
public:
void get_value()
{cin>>capacity>>occuption>>surplus;}
void display()
{cout<<"capacity:"<<capacity<<endl;
cout<<"occuption:"<<occuption<<endl;
cout<<"surplus:"<<surplus<<endl;}
private:
int capacity;
int occuption;
int surplus;
int n;
};
class manager1:public manager
{
public:
void get_value_1()
{cin>>conductor;}
void display_1()
{cout<<"conductor:"<<endl;}
private:
int conductor;
}
cout<<"请输入您的名字:";cin>>name;
if(name==1)
{cout<<"业务员发出扩增仓库的申请!"<<endl;
cout<<"请输入要扩增的倍数";cin>>n;}
else
cout<<"Error!"<<endl;
if(n>1&&n<=5)
{cout<<"业务员发出的申请已通过管理员的审核。"<<endl;
cout<<"仓库总容量为:"<<(capacity*n)<<endl;}
else
cout<<"业务员发出的申请被管理员拒绝。"<<endl;
}
求c++大神帮我看看哪里错了 显示16个错误 #include<iostream> using
include#includeusingnamespacestd;intmain(){voidsmall_string(chara[30],charb[30],charc[30]);\/\/改成定义一样的类型chara[30],b[30],c[30];cin>>a[30];cin>>b[30];cin>>c[30];small_string(a,b,c);return0;}voidsmall_string(chara[30],charb[30],charc[30]){chars[30];...
请C++高手来看看我的这串代码哪里出错了
include<iostream>using namespace std;class string{};int main(){string a;return 0;}\/\/我的sublime用的是g++,测了这一段代码,都报错了。\/\/[第一个错误]error: reference to 'string' is ambiguous\/\/我不知道我的理解有没有错啊,你的自己定义的类string和std namespace里面的string同名了。
c++哪里错了
include <iostream> using namespace std;int main(){ double r;cout<<"please input r:";cin>>r;double s=r*r*3.14;cout<<"the result is"<<s<<"\\n";return 0;} 你要注意每个语句后都要有分号,除了cout语句内的符号都不能用中文符号。所有函数除了无返回类型void外都要返回一个值。
本人菜鸟,请问这段C++代码错在哪? #include "string" #include "string...
include <string.h> include <iostream> string,string.h并且这两个头文件不是你自己定义的,只引用一个就可以了,他们是一个头文件
C++哪里错了
include<iostream> include<string> using namespace std;class person { public:person(string num,string name){ this ->num=num;this ->name=name;} virtual void show(){ cout<<"人"<<num<<" "<<name<<" ";} protected:string num,name;};class teacher:public person { public:teacher...
C++求完数,哪错了?高手指教一下,谢谢
include<iostream> include<cmath> using namespace std;int main(){ int sum=0;double sqrti;for(int i=1;i<=1000;++i)sqrti=sqrt(i*1.0);for(int j=1;j<sqrti;++j){ if(i%j==0)\/\/这个变量i没有声明,编译器会报错 sum+=j;} if(sum==i)\/\/这个变量i没有声明,编译器会...
大师们~~ 帮我看看我这个C++的程序哪里出现问题了。。。 怎么修改啊...
include<iostream> include<iomanip> include<string.h>\/\/strlen在这个头文件里,要用的话就要include using namespace std;void getStr(char str1[], char str2[]);int main(){ char str1[100], str2[100];cout << "Please enter a string:";cin.getline(str1, 100);getStr(str1, str...
谁能帮我改一下这个个C++的错误(天哪,错误太多了)
\/\/我把你写错的地方都加了注释自己看看你哪里错了吧.估计你是刚开始写,一开始能抄这么大的程序来,值得佩服.include<iostream> include<string> using namespace std;class cStudent { public:cStudent(){} ~cStudent(){} double sum();double average();void print();double get_reg_num(); ...
我这个c++代码哪里错了
include <castdlib>这个头文件是没有的 tmp.cpp:3:10: fatal error: 'castdlib' file not found#include <castdlib> ^~~~1 error generated.你的应该是错打a了,是<cstdlib>或是<stdlib.h>,是c语言中的常用头文件 然后:tmp.cpp:16:13: error: expected ')'if(i=0;i<9-i;i++)...
c++求大神看看那里错了 电脑一运行就停止工作
include <iostream>int samll(int a[], int liong, int d);void change(int& a, int& b);int main(){using namespace std;int a[5], x = 5, q, d = 0;for (int i = 0; i<5; i++)cin >> a[i];for (int j = 0; j<5; j++){q = samll(a, x, d);change(a[...