Skip to content

Instantly share code, notes, and snippets.

@KarthikNaik-SCEM
KarthikNaik-SCEM / RRndSRTFscheduling.java
Created July 9, 2023 12:25 — forked from Adithya-Rama/RRndSRTFscheduling.java
A java program to demonstrate Round Robin and SRTF scheduling Techniques in Operating System
package osprograms;
import java.util.Scanner;
public class Program7 {
static int[] arrivalTime = new int[10], burstTime = new int[10];
static int size;
public static void main(String[] args) {