我正在阅读“C++ 编程语言”,我目前的任务是制作一个程序,该程序采用两个变量并确定值的最小、最大、总和、差异、乘积和比率。
问题是我无法开始换行。"\n" 不起作用,因为我在引号后面有变量。而 "<< endl <<" 仅适用于第一行。我用谷歌搜索了这个问题,但我做得很短。
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
inline void keep_window_open() {char ch;cin>>ch;}
int main()
{
int a;
int b;
cout<<"Enter value one\n";
cin>>a;
cout<<"Enter value two\n";
cin>>b;
(a>b); cout<< a << " Is greater than " << b;
(a<b); cout<< a << " Is less than " << b;
keep_window_open();
return 0;
}