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 more4 310
Subscribers
No data24 hours
-587 days
-28130 days
Posts Archive
4 310
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
4 310
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
4 310
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
4 310
Notes For Software Development | DBMS|HTML| JAVASCRIPT | JAVA
PYTHON |C++ | ANDRIOD | and many more |
Download Nowπ²π²π²
4 310
β οΈ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
β οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈβ οΈ
4 310
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
β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β β β β β β β’β’β’β’β’β’β’β’
4 310
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
4 310
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
-------------------------------------------------
4 310
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
4 310
https://www.inferiustech.xyz/2021/08/How-To-Crack-Any-App-Or-Game-Easily.html?m=1
γ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈ
4 310
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
γ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈ
4 310
βπ’π―π’ π¦π° πππ³πππ π―π¦ππ± ππ―π¬π€π―ππͺ π£π¬π― ππ’π€π¦π«π«π’π― π±π₯π¬π°π’ π΄π₯π¬ π΄ππ«π± π±π¬ π©π’ππ―π« πππ³πππ π―π¦ππ± ππ¬ β π°π±ππ―π±π’π‘ π π°π’π―π¦π’π° 30 π‘ππΆ πππ³πππ π―π¦ππ± ,π΄π₯π’π―π’ ππ¬π² π΄π¦π©π© π©π’ππ―π« πππ°π¦π π±π¬ ππ‘π³ππ«π π’ ππ |
ππ₯π¦π° π¦π° π§π²π°π± π°π¦πͺππ©π’ ππ―π¬π€π―ππͺ π±π¬ π ππ©π π²π©ππ±π’ ππ¦π°π π¬π²π«π± π¬π« ππ«πΆ ππ―π¬π‘π²π π±
https://www.youtube.com/watch?v=E84gUTMCulE
