gpt4 book ai didi

c++ - 我的 C++ 程序没有执行我的 cout 代码

转载 作者:太空宇宙 更新时间:2023-11-04 14:55:18 25 4
gpt4 key购买 nike

我正在学习 C++,我正在尝试制作一个打印 5 个变量的简单程序,正如我的书中所说的那样,但它没有执行我的代码。

#include<iostream>
using namespace std;
int main()
{
//Program Code below
return 0;
char letter; letter = 'A'; //Declared, then initialized
int number; number = 100; //Declared, then initialized
float decimal = 7.5; //Declared AND initialized
double pi = 3.14159; //Declared AND initialized
bool isTrue = false; //Declared AND initialized
cout<<"Char letter: "<<letter<<endl;
cout<<"Int number: "<<number<<endl;
cout<<"Float decimal: "<<decimal<<endl;
cout<<"Double pi: "<<pi<<endl;
cout<<"Bool isTrue: "<<isTrue<<endl;
}

最佳答案

一旦你的代码执行了这一行

return 0;

不会执行您的 代码的其他行 - 从实际的角度来看,您的程序将结束。将此行向下移动,使其成为 main() 函数执行的最后一行代码。

关于c++ - 我的 C++ 程序没有执行我的 cout 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18466283/

25 4 0
文章推荐: 包含容器的对象的 C++ 布局
文章推荐: HTML