1行中2个不同的输入值

时间:2016-08-12 13:04:12

标签: c++

任何人都可以帮助我如何做或获得同时接受2个不同值的2输入。

图片 M2 中的红色方块是我输入的INPUT,如果我输入 M1 ,则会导致Milk损失10.50。

Here is the example input.

1 个答案:

答案 0 :(得分:0)

据我所知,您正在尝试输入输出一行或另一行。只需使用if语句就可以轻松完成此操作。例如:

#include <iostream>
using namespace std;

int main() {
    string INPUT;
    cout << "The beginning of your code (the table, information, selection, and 'item selected:')";
    cin >> INPUT;
    if (INPUT == "possible inputs") {
        cout << "Cash amount:" << price;
    }
}