操作模块名 | 表示含义说明 |
---|---|
start | 开始 |
end | 结束 |
operation | 普通操作块 |
subroutine | 子任务块 |
condition | 判断块 |
inputoutput | 输入输出块 |
代码实现
#include <iostream>
using namespace std;
int main(){
float c;
cout << "请输入患者体温:"<< endl;
cin >> c;
if (c > 37.3){
cout << "请去发热门诊" << endl;
}
}