我刚开始学习 C++,我做的主要方法是:
#include <iostream>
using namespace std;
int main ()
{
int d;
int n;
cout <<"Enter the denominator: " << endl;
cin >> d;
cout <<"Enter the numerator: " << endl;
cin >> n;
cout <<"The result of operation is: " << endl;
cout << (double)n/d << endl;
cout <<"Done";
return 0;
}
它不会产生输出,但如果我删除返回 0。我会产生正确的输出。C++ 中的 main 方法最终不应该总是返回一个整数吗?