en
Feedback
hgn330 πŸ’‹πŸ“

hgn330 πŸ’‹πŸ“

Open in Telegram

Projects with source code | Android | java |website development | Website : https://updategadh.com Admin https://t.me/Rishabhsaini0204 New project https://www.youtube.com/c/decodeit2 Buy ads: https://telega.io/c/projectswithsourcecode

Show more
4 310
Subscribers
No data24 hours
-587 days
-28130 days
Posts Archive
4 Program to CALCULATE Simple Interest and Compound Interest. ●●●●●●●●●●●●●●●●● import java.lang.*; import java.util.Scanner; class CalculateInterest { public static void main(String[] args) { double p, n, r, si, ci; Scanner s = new Scanner(System.in); System.out.print("Enter the amount : "); p = s.nextDouble(); System.out.print("Enter the Number of years : "); n = s.nextDouble(); System.out.print("Enter the Rate of interest : "); r = s.nextDouble(); si = (p * n * r) / 100; ci = p * Math.pow(1.0 + r / 100.0, n) - p; System.out.println("\nAmount : " + p); System.out.println("No. of years : " + n); System.out.println("Rate of interest : " + r); System.out.println("Simple Interest : " + si); System.out.println("Compound Interest : " + ci); } } 〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️ @ProjectsWithSourceCode

Hey Guys I am not Giving Free projects now Because 350+ member here but you don't subscribe my channel. So 1st subscribe to my channel and send Ss in the group Then I will send you many advance java projects

3. Program to Calculate Area's. β– β– β– β– β– β– β– β– β– β– β– β– β– β– β– β– β–  import java.util.Scanner; class AreaCalculator { float l, b, h, r, ba, s, c; float result = 0f; float pi = 3.14f; int var; public static void main(String[] args) { AreaCalculator ar = new AreaCalculator(); ar.options(); } public void options() { Scanner a = new Scanner(System.in); System.out.println("Enter the Object of which Area is to be calculated \n1:square \n2:rectangle \n3:Triangle\n4:circle\n5:Trapezoid\n6:Repeat\n7:Exit"); var = a.nextInt(); Area a1 = new Area(); if (var == 1) { System.out.println("Enter the Side of Square"); s = a.nextFloat(); a1.square(s); options(); } else if (var == 2) { System.out.println("Enter the Length of Rectangle"); l = a.nextFloat(); System.out.println("Enter the Breadth of Rectangle"); b = a.nextFloat(); a1.rectangle(l, b); options(); } else if (var == 3) { System.out.println("Enter the Height of Triangle"); h = a.nextFloat(); System.out.println("Enter the Base of Triangle"); ba = a.nextFloat(); a1.triangle(h, ba); options(); } else if (var == 4) { System.out.println("Enter the Radius of Circle"); r = a.nextFloat(); a1.circle(r); options(); } else if (var == 5) { System.out.println("Enter the A side of Trapezoid"); b = a.nextFloat(); System.out.println("Enter the B side of Trapezoid"); c = a.nextFloat(); System.out.println("Enter the Height of Trapezoid"); h = a.nextFloat(); a1.trapezoid(b, c, h); options(); } } } class Area { public void square(float s) { float result = 0f; result = s * s; System.out.println("The Area of Square is :" + result); } public void rectangle(float l, float b) { float result = 0f; result = l * b; System.out.println("The Area of Rectangle is :" + result); } public void triangle(float h, float ba) { float result = 0f; result = 0.5f * h * ba; System.out.println("The Area of Triangle is :" + result); } public void circle(float r) { float result = 0f; result = 3.14f * (r * r); System.out.println("The Area of Circle is :" + result); } public void trapezoid(float b, float c, float h) { float result = 0f; result = (((b + c) / 2) * h); System.out.println("The Area of Trapezoid is :" + result); } } @ProjectsWithSourceCode

Notes For Software Development | DBMS|HTML| JAVASCRIPT | JAVA PYTHON |C++ | ANDRIOD | and many more | Download NowπŸ“²πŸ“²πŸ“²

PROJECTS You Need (Java ,Php, Website, Javascript, C++,)
Anonymous voting

⚠️NOTE :- I AM GIVING YOU ALL PROJECTS FREE OF COST NOT A SINGLE RUPESS BUT YOU ALL GUYS ARE NOT SUPPORTING ME , JUST SUPPORT ME TO SUBSCRIBE AND SHARE MY VIDEO LIKE AND COMMENTS OTHERWISE I WILL ALSO START TAKING MONEY FOR Projects So you support me I always help you in projects and in education also SUBSCRIBE (Click Here ) Like COMMENTS ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️

Those who want to start their YouTube channel πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡ Watch Click here There step should be Follow and you can start there own channel 1k subscribe with 10 day πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡ Watch this β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β– β– β– β– β– β– β€’β€’β€’β€’β€’β€’β€’β€’

2. Print Largest number 😊 β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎β–ͺ︎ class CommandLineArgs { public static void main(String args[]) { int a, b, c; a = Integer.parseInt(args[0]); b = Integer.parseInt(args[1]); c = Integer.parseInt(args[2]); if (a > b && a > c) { System.out.println("Largest Number is : " + a); } else if (b > c) { System.out.println("Largest Number is : " + b); } else { System.out.println("Largest Number is : " + c); } } } @ProjectsWithSourceCode

Source Code _ GYM MANAGEMENT SYSTEMπŸ“²

https://youtu.be/Gaf4xLh-Ews GYM Management system is a project which aims in developing a Language Used - Core Java Concept Used - Swing IDE Used - Eclipse Database Used - MySQL -------------------------------------------------

sticker.webp0.29 KB

Java programming Code series 〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️ 1. Accept values and print their Addition. β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β—‹β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’β€’ import java.util.Scanner; class AddNumbers { public static void main(String args[]) { int x, y, z; System.out.print("Enter two integers : "); Scanner in = new Scanner(System.in); x = in.nextInt(); y = in.nextInt(); z = x + y; System.out.println("Sum of integers = " + z); } } πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”—πŸ”— @ProjectsWithSourceCode

https://www.inferiustech.xyz/2021/08/How-To-Crack-Any-App-Or-Game-Easily.html?m=1 〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️

TODAY I WILL UPLOAD A #JAVA PROJECTS 〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️ PROJECT NAME - 》 GYM Management Language-》 Java +SQL IDE -》 Eclipse Source code -》 Check video Description ⚠️VIDEO WILL UPLOAD AT 3.30pm (Sunday) @ProjectsWithSourceCode 〰️〰️〰️〰️〰️〰️〰️〰️〰️〰️

β„Œπ”’π”―π”’ 𝔦𝔰 π”π”žπ”³π”žπ”–π” π”―π”¦π”­π”± π”­π”―π”¬π”€π”―π”žπ”ͺ 𝔣𝔬𝔯 π”Ÿπ”’π”€π”¦π”«π”«π”’π”― 𝔱π”₯𝔬𝔰𝔒 𝔴π”₯𝔬 π”΄π”žπ”«π”± 𝔱𝔬 π”©π”’π”žπ”―π”« π”π”žπ”³π”žπ”–π” π”―π”¦π”­π”± 𝔖𝔬 β„‘ π”°π”±π”žπ”―π”±π”’π”‘ π”ž 𝔰𝔒𝔯𝔦𝔒𝔰 30 π”‘π”žπ”Ά π”π”žπ”³π”žπ”–π” π”―π”¦π”­π”± ,𝔴π”₯𝔒𝔯𝔒 π”œπ”¬π”² 𝔴𝔦𝔩𝔩 π”©π”’π”žπ”―π”« π”Ÿπ”žπ”°π”¦π”  𝔱𝔬 π”žπ”‘π”³π”žπ”«π” π”’ 𝔍𝔖 | 𝔗π”₯𝔦𝔰 𝔦𝔰 𝔧𝔲𝔰𝔱 𝔰𝔦π”ͺ𝔭𝔩𝔒 π”“π”―π”¬π”€π”―π”žπ”ͺ 𝔱𝔬 π” π”žπ”©π” π”²π”©π”žπ”±π”’ 𝔇𝔦𝔰𝔠𝔬𝔲𝔫𝔱 𝔬𝔫 π”žπ”«π”Ά 𝔭𝔯𝔬𝔑𝔲𝔠𝔱 https://www.youtube.com/watch?v=E84gUTMCulE

DO YOU WANT To start A YouTube Channel 🀝
Anonymous voting