操作模块名 表示含义说明
start 开始
end 结束
operation 普通操作块
subroutine 子任务块
condition 判断块
inputoutput 输入输出块

代码实现

  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. float c;
  5. cout << "请输入患者体温:"<< endl;
  6. cin >> c;
  7. if (c > 37.3){
  8. cout << "请去发热门诊" << endl;
  9. }
  10. }

流程图

Created with Raphaël 2.1.2开始定义浮点变量c,用来存放温度输入患者体温温度>37.8?请去发热门诊结束yesno

流程图

Created with Raphaël 2.1.2开始定义变量h和l输入患者血压是否是正常血压?血压正常结束血压异常,请休息一会,再来测量yesno

流程图

Created with Raphaël 2.1.2开始定义变量nn<100?一级医院结束n<500?二级医院三级医院yesnoyesno