gpt4 book ai didi

c - 简单流程图

转载 作者:行者123 更新时间:2023-11-30 14:28:07 24 4
gpt4 key购买 nike

void main()
{
int numTickets;
float discount;
float total = 0.0;
int numKids = 0;
float ticketPrice = 19.00;
printf("Enter number of tickets: ");
scanf("%d", &numTickets);
if (numTickets > 10)
{
discount = 0.15;
}
else
{
discount = 0.0;
}
printf("Enter number of children: ");
scanf("%d", &numKids);
total = numKids*ticketPrice/2.0 + (numTickets – numKids)*ticketPrice;
total = total*(1.0 – discount);
printf("Total = %.2f \n", total);
}

基本上,我正在帮助我表弟学习,其中一个问题是为此绘制流程图。问题是我忘记了我所知道的关于流程图的一切!顶部的可变减速度有标准吗?我实际上可以弥补剩下的部分,只是不知道如何开始!

最佳答案

常规赋值(如变量初始化)应出现在普通矩形中(如 http://upload.wikimedia.org/wikipedia/commons/d/d6/FlowchartExample.png 中的矩形)。

请记住,IO(如 printf/scanf 语句)应采用平行四边形,条件分支应采用菱形。

关于c - 简单流程图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6608857/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com