我使用C ++编程相当新。
如何获得这样的输出?
Input three numbers:
1 2 3
其中1,2和3被声明为整数。
答案 0 :(得分:0)
#include <iostream>
std::cout << "Input three numbers:" << std::endl;
int value1, value2, value3;
if (std::cin >> value1 >> value2 >> value3)
{
// use values as needed...
}
答案 1 :(得分:0)
我想你会问你将如何获得这样的http://imgur.com/a/VICGx
代码如下:
#include <iostream>
using namespace std;
int main()
{
cout << "Input three numbers:\n" ;
int i1 =0 , i2 = 0, i3 = 0 ;
cin >> i1 >> i2 >> i3 ;
}