#include<iostream>
using namespace std;
#include<cstdio>
#include"dos.h"
int sum(int &a, int &b)
{
a++;
b++;
return (a)+(b);
}
int main()
{
int a, b;
cout << "Enter a and b";
cout << endl;
cin >> a >> b;
int sum1;
sum1= sum(a, b);
cout << endl << sum1;
cin.get();
cin.get();
return 0;
}
如果我评论cin.get()
中的任何一行,则程序在完成后关闭(即输出屏幕)。
是因为我必须按两次Enter键(用于输入值)并且最后一个“输入键”在完成程序后关闭程序?
答案 0 :(得分:0)
自从我使用Visual Studio以来,我遇到了同样的问题,但是我正在使用此代码,但没有问题。
<button onClick={e => {e.preventDefault(); this.props.whatever();}}> {this.props.name} </button>