Code::Blocks - Linux - 打印 "Hello World" 即使它不在 "main.cpp" 文件中
Code::Blocks - Linux - prints "Hello World" even though it isn't in the "main.cpp" file
我最近开始了几个项目来帮助我学习C++,我正在创建一个程序,允许用户输入成绩/100,代码如下:
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main (gradeScore)
{
int gradeScore
cout << "Enter your grade score out of 100"
cin >> gradeScore
if (gradeScore == 100)
{
cout << "Well done! You have achieved a perfect score!.."
{
}
我尝试编译它只是为了确保它到目前为止能正常工作,但是,它会打开终端并打印出来
Hello World!
Process returned 0 (0x0) execution time : 0.013 s
Press ENTER to continue.
我不知道该怎么办,项目中没有任何地方包含字符串 "Hello World"。有人可以帮我吗?我只想能够像这样不受阻碍地继续我的学习。
我正在使用 Code::Blocks 13.12 rev 9501 (2013-12-25 18:25:45) gcc 4.8.2 Linux/unicode - 32 位(不确定这是否有用)
谢谢大家。
非常感谢您的建议和帮助,我敢肯定,我们这些菜鸟总是看到这样的问题是令人沮丧的。
我已经解决了这个问题,事实证明这个解决方案非常简单:
我删除了该项目,创建了一个新项目,打开了 main.cpp 文件,发现这个厚脸皮的小家伙坐在文件上:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" <<endl;
}
我删除了它并将我的原始程序更正为:
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int gradeScore;
cout << "Input test score out of 100:";
cin >> gradeScore;
if (gradeScore == 100)
{
cout << "Congratulations! You achieved a perfect score" << endl;
{
}
再次感谢大家的耐心等待!我保证我会努力哈哈哈!
我最近开始了几个项目来帮助我学习C++,我正在创建一个程序,允许用户输入成绩/100,代码如下:
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main (gradeScore)
{
int gradeScore
cout << "Enter your grade score out of 100"
cin >> gradeScore
if (gradeScore == 100)
{
cout << "Well done! You have achieved a perfect score!.."
{
}
我尝试编译它只是为了确保它到目前为止能正常工作,但是,它会打开终端并打印出来
Hello World!
Process returned 0 (0x0) execution time : 0.013 s
Press ENTER to continue.
我不知道该怎么办,项目中没有任何地方包含字符串 "Hello World"。有人可以帮我吗?我只想能够像这样不受阻碍地继续我的学习。
我正在使用 Code::Blocks 13.12 rev 9501 (2013-12-25 18:25:45) gcc 4.8.2 Linux/unicode - 32 位(不确定这是否有用)
谢谢大家。
非常感谢您的建议和帮助,我敢肯定,我们这些菜鸟总是看到这样的问题是令人沮丧的。
我已经解决了这个问题,事实证明这个解决方案非常简单: 我删除了该项目,创建了一个新项目,打开了 main.cpp 文件,发现这个厚脸皮的小家伙坐在文件上:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" <<endl;
}
我删除了它并将我的原始程序更正为:
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int gradeScore;
cout << "Input test score out of 100:";
cin >> gradeScore;
if (gradeScore == 100)
{
cout << "Congratulations! You achieved a perfect score" << endl;
{
}
再次感谢大家的耐心等待!我保证我会努力哈哈哈!