📄 broccoli.cpp
字号:
#include <iostream>#include <string>using namespace std;// illustrates use of if-else statementint main(){ string response; cout << "Do you like broccoli [yes/no]> "; cin >> response; if ("yes" == response) { cout << "Green vegetables are good for you" << endl; cout << "Broccoli is good in stir-fry as well" << endl; } else { cout << "De gustibus non disputandum" << endl; cout << "(There is no accounting for taste)" << endl; } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -