gpt4 book ai didi

c++ - 先到先得程序 C++ 表格格式

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

<分区>

我被要求执行“先到先得”计划。我破解了代码,程序运行良好。但是我在表格列中显示它时遇到问题。

我希望它像这样显示:

Pr  AT  ST  WT  TAT RR
--------------------------
A 0 3 0 3 1
B 2 6 1 7 1.16
C 4 4 5 9 2.25
D 6 5 7 12 2.4
E 8 2 10 12 6

Average Response Ratio is 2.56

但是我得到的是这样的: Output

在我输入姓名、到达时间和服务时间后,等待时间、周转时间和响应率出现在下一行。我希望所有的东西都出现在同一条线上。

谁能告诉我哪里出错了?这是我的代码:

//First Come First Serve Scheduling
#include<iostream.h>
#include<stdio.h>
#include<conio.h>
void main()
{
int at[5],st[5],tt=0,wt=0,tr=0;
char name[5];
float res,tres;
clrscr();
cout<<"\n\tName \tAT \tST \tWT \tTAT \tRR";
for(int i=0;i<5;i++)
{
cout<<"\n\t";
cin>>name[i];
cout<<"\t";
cin>>at[i];
cout<<"\t";
cin>>st[i];
wt = tr - at[i];
cout<<"\t\t"<<wt;
tt = wt + st[i];
cout<<"\t"<<tt;
tr+=st[i];
res=(float)tt/st[i];
tres+=(float)res;
cout<<"\t"<<res;
}
cout<<"\nAverage response ratio is: "<<tres/5;
getch();
}

任何帮助都会非常好。谢谢你们。

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