Hello World

Hello World

charliez0 Lv1

Hello world!
Hello world!
Hello world!

1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int main(void)
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",a+b);
return 0;
}

Start=>start: 开始
Input=>inputoutput: 输入平时成绩和期末考试成绩
Con1=>condition: 期末考试成绩 < 45 ?
Con2=>condition: 成绩 < 60 ?
Calc=>subroutine: 期末成绩 = 期末考试成绩 * 0.5 + 平时成绩 * 0.5
OutOK=>inputoutput: 输出成绩
OutGG=>inputoutput: 在线挂科
End=>end: 结束

Start->Input->Con1
Con1(no)->Calc(bottom)->Con2
Con2(yes, bottom)->OutGG->End
Con2(no)->OutOK->End
  • 标题: Hello World
  • 作者: charliez0
  • 创建于: 2020-11-15 00:00:00
  • 更新于: 2023-06-26 15:25:40
  • 链接: https://charliez0.js.org/2020/11/15/helloworld/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
 评论
此页目录
Hello World