由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C++的一个bug,求解
相关主题
C++ Q60 calling virtual function in constructor (JPMorgan)C++ Q80: What is the output of the following code?
这个C++程序的运行结果是什么问个C++模板定义的问题
C++ Q96: function inheritanceone C++ question
请教C/C++小C++: what is the output? How to interpret it?
为什么我在array里用IsOdd 总出错?C++问题
C++ Q22: ostream新手问个C++(Thinking in C++ source code)
弱问一个c++编程题贴个FLEXTRADE的在线C++测试的题
【为什么我写的reverse string总出错】微软C++面试题
相关话题的讨论汇总
话题: cin话题: cout话题: int话题: float话题: main
进入JobHunting版参与讨论
1 (共1页)
w*******2
发帖数: 35
1
以下是完整的代码
#include
using namespace std;
int main();
{
int X,Y,Z,S,E,F,G;
float m,n,w;
E=5*X;
F=10*Y;
G=20*Z;
S=E+F+G;
m=E/S;
n=F/S;
w=G/S;
cin>>X>>"n";
cin>>Y>>"n";
cin>>Z>>"n";
cout< cout< cout< return(0);
}
用codeblocks运行,结果报错:
error:expected unqualified-id
也不知道是哪里错了,求大家指点,不剩感激~
x******7
发帖数: 11
U***A
发帖数: 849
3
不解这个题目的意思,但是这里会有问题,因为S是0.
T*****n
发帖数: 82
4
这个就没bug了
int main() {
// insert code here...
int X,Y,Z,S,E,F,G;
float m,n,w;

cin>>X;
cin>>Y;
cin>>Z;

E=5*X;
F=10*Y;
G=20*Z;

S=E+F+G;

m=E/S;
n=F/S;
w=G/S;

cout< cout< cout<
return(0);
}
1 (共1页)
进入JobHunting版参与讨论
相关主题
微软C++面试题为什么我在array里用IsOdd 总出错?
amazon的那道题目C++ Q22: ostream
C: what is the output?弱问一个c++编程题
请教一个写程序的问题【为什么我写的reverse string总出错】
C++ Q60 calling virtual function in constructor (JPMorgan)C++ Q80: What is the output of the following code?
这个C++程序的运行结果是什么问个C++模板定义的问题
C++ Q96: function inheritanceone C++ question
请教C/C++小C++: what is the output? How to interpret it?
相关话题的讨论汇总
话题: cin话题: cout话题: int话题: float话题: main