作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始学习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 方法不应该最终总是返回一个整数吗?
最佳答案
在返回之前尝试 cout.flush();
。它强制将缓冲数据发送到输出。
关于c++ - 从 main 返回零中断了我的程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16533947/
安装并修复我的 VS2015 实例后,我仍然无法让智能感知(服务器端)在我的 MVC View 中工作。当我在 session 中第一次打开 .cshtml 文件并找到 Activitylog 文件时
我是一名优秀的程序员,十分优秀!