任何人都可以帮助我如何做或获得同时接受2个不同值的2输入。
图片 M2 中的红色方块是我输入的INPUT,如果我输入 M1 ,则会导致Milk损失10.50。
答案 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;
}
}