diff --git a/15_days_Report_2.pdf b/15_days_Report_2.pdf new file mode 100644 index 0000000..064dca5 Binary files /dev/null and b/15_days_Report_2.pdf differ diff --git a/Binary_Brains_SY_73.java b/Binary_Brains_SY_73.java new file mode 100644 index 0000000..8049d09 --- /dev/null +++ b/Binary_Brains_SY_73.java @@ -0,0 +1,380 @@ +PACKAGE_1 + +CLASS : + + +Menu : + +package Pack; + +public class Menu { + + void Menu() { + System.out.println("\n\t\t----: Menu :----"); + System.out.println("\n\t #Item_Id\t\t\t\t#Item_Name\t\t\t\t\t#Price/Unit"); + System.out.println("\n\t\tC1\t\t\t\t Rice\t\t\t\t\t\t55/-"); + System.out.println("\n\t\tC2\t\t\t\t Wheat\t\t\t\t\t\t45/-"); + System.out.println("\n\t\tC3\t\t\t\t Ragi\t\t\t\t\t\t40/-"); + System.out.println("\n\t\tC4\t\t\t\t Barley\t\t\t\t\t\t35/-"); + System.out.println("\n\t\tC5\t\t\t\t Maize\t\t\t\t\t\t42/-"); + + + System.out.println("\n\t\tC6\t\t\t\t Hair Oil\t\t\t\t\t\t35/-"); + System.out.println("\n\t\tC7\t\t\t\t Talcum Powder\t\t\t\t\t60/-"); + System.out.println("\n\t\tC8\t\t\t\t Moisturizer\t\t\t\t\t110/-"); + System.out.println("\n\t\tC9\t\t\t\t Face Wash\t\t\t\t\t\t70/-"); + System.out.println("\n\t\tC10\t\t\t\t Perfume\t\t\t\t\t\t100/-"); + + System.out.println("\n\t\tC11\t\t\t\t Bread\t\t\t\t\t\t30/-"); + System.out.println("\n\t\tC12\t\t\t\t Biscuites\t\t\t\t\t\t20/-"); + System.out.println("\n\t\tC13\t\t\t\t Cake\t\t\t\t\t\t40/-"); + System.out.println("\n\t\tC14\t\t\t\t Chocolates\t\t\t\t\t\t10/-"); + System.out.println("\n\t\tC15\t\t\t\t Ice-Cream\t\t\t\t\t\t30/-"); + + System.out.println("\n\t\tC16\t\t\t\t Soaps\t\t\t\t\t\t55/-"); + System.out.println("\n\t\tC17\t\t\t\t Detergents\t\t\t\t\t\t70/-"); + System.out.println("\n\t\tC18\t\t\t\t Shampoo\t\t\t\t\t\t55/-"); + System.out.println("\n\t\tC19\t\t\t\t Floor Cleaner\t\t\t\t\t80/-"); + System.out.println("\n\t\tC20\t\t\t\t Toilet Cleaner\t\t\t\t\t77/-"); + + System.out.println("\n\t\tC21\t\t\t\t Milk\t\t\t\t\t\t53/-"); + System.out.println("\n\t\tC22\t\t\t\t Paneer\t\t\t\t\t\t200/-"); + System.out.println("\n\t\tC23\t\t\t\t Cheese\t\t\t\t\t\t350/-"); + System.out.println("\n\t\tC24\t\t\t\t Butter/Ghee\t\t\t\t\t450/-"); + System.out.println("\n\t\tC25\t\t\t\t Yoghurt/Buttermilk\t\t\t\t\t110/-"); + + } +} + + + + + + +Cart: + +package Pack; + +import java.util.*; + +class Cart{ + String item; + float rate; + String Id; + String sections; + String address; + Cart next; + + Cart( ){ + this.item=item; + this.rate=rate; + this.Id=Id; + this.sections=sections; + this.address=address; + next=null; + } +} + + + +Grocery_Management : + +package Pack; + +import java.util.*; + +public class Grocery_Management { + + Scanner sc=new Scanner(System.in); + + Menu m = new Menu(); + List bag = new ArrayList <>(); + Cart obj[]=new Cart[50]; + + Cart front,rear,prev; + String addr; + String products; + String section; + float price; + String ID; + Cart ptr; + + public Grocery_Management(){ + front=null; + rear=null; + } + + public void create_order() { + Cart temp ; + int i; + System.out.println("\n\t*****Welcome To At Your Door Mart*****"); + + for(i=0;i<50;i++){ + obj[i]=new Cart(); + } + + m.Menu(); + + System.out.println("\n\nEnter Customer Number(ID):"); + ID=sc.next(); + + System.out.println("\nSelect Your Products:"); + + System.out.println("\nEnter total items:"); + int no=sc.nextInt(); + + System.out.println("\nAdd products into cart-->:"); + for(i=0;i"); + obj1.display(); + break; + + case 3: + obj1.display( ); + break; + + case 4: + System.out.println("\nThank You For Visiting Us"); + System.exit(0); + + default: + System.out.println("\nInvalid choice..."); + } + + System.out.println("--------------------------------------------------------------------------------------------------"); + System.out.println("\nDo you want to continue? press 1 otherwise 0 "); + no=sc1.nextInt(); + }while(no!=0); + System.out.println("\n\tYou exited successfully :) \n\t\n\t\t^_^ THANK YOU ^_^"); + } +} diff --git a/README.md b/README.md index e6bc571..e0addcd 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,11 @@ While submitting, note that: Each folder should have the name of the team and inside a readme file with team member details, (name, year, branch) and their theme. The readme file should also contain the link to their presentation as well as the drive link where both the report documents would be stored. Happy Coding :) +Team_Number : 73 +Team_Name : Binary_Brains +Team Theme : Digital Society +Team_Members : +1. Tanishqua Kawade SY COMP +2. Vaishnavi Patil SY IT +3. Mahima Patil SY IT +4. Drive Link : https://drive.google.com/drive/folders/1A2qSp_By7OY0aCfx_X8CAuhF7K1wn2ng?usp=sharing diff --git a/Team Feedback Report 1.pdf b/Team Feedback Report 1.pdf new file mode 100644 index 0000000..ec6f8a1 Binary files /dev/null and b/Team Feedback Report 1.pdf differ