diff --git a/BUFFER 5.0 Pirate of the boolean.docx b/BUFFER 5.0 Pirate of the boolean.docx new file mode 100644 index 0000000..9b34b1f Binary files /dev/null and b/BUFFER 5.0 Pirate of the boolean.docx differ diff --git a/README.md b/README.md index 910ff0f..14f45f5 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,110 @@ Buffer is a Data Structures and Algorithms Project Series, in which students can 4. Custom Data structure This repository is created for all the teams to be able to upload their final project source code. While submitting, note that all the submission guidelines given are followed, and all the files are named appropiately. Also ensure that your README file contains the links of the progress reports and the drive link containing the video of the project. + + + COLLEGE APPLICATION_TASK SCHEDULER +package sem2practice; +import java.util.*; +import java.io.*; +public class Main { +public static void main(String args[]) { + +//User Interface Menu + +Scanner sc=new Scanner(System.in); +String a; +System.out.println("\n"); +operations op=new operations(); +System.out.println("***** WELCOME TO CUMMINS DAILY TASK SCHEDULER ******"); +System.out.println("\n"); +System.out.println("The key to your success is hidden in your daily routine"); +System.out.println("\n"); + +System.out.println("enter no of tasks"); + +int n=sc.nextInt(); +for(int i=0;i stack2 = new Stack(); +Stack stack1=new Stack(); + +//operation 1 + +public void add() { +System.out.println("enter task"); +String a=sc.nextLine(); +stack2.push(a); +System.out.println(stack2); +System.out.println("\n"); + +} + +public void disp(int j) { +String temp; +// Reversing Stack2 and storing it in Stack for display function +for(int i=0;i