fix typo on line 126 (#5768)

This commit is contained in:
Leoriem-code 2021-11-05 06:06:37 +01:00 committed by GitHub
parent dbddac74d3
commit 6b2b476f86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ if __name__ == "__main__":
processes = list(range(1, no_of_processes + 1))
for i in range(no_of_processes):
print("Enter the arrival time and brust time for process:--" + str(i + 1))
print("Enter the arrival time and burst time for process:--" + str(i + 1))
arrival_time[i], burst_time[i] = map(int, input().split())
waiting_time = calculate_waitingtime(arrival_time, burst_time, no_of_processes)