May 13, 2025
Trending Now
  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

  •    Build Your First Responsive Login Form Using H...

  •    Java Beans...

  •    Java String Methods...

Click Here to Buy Our Courses

  • Home
  • About Us
  • Java
    • Java for Beginners
    • Java Projects
    • Java Console Application Projects
  • C#.net
  • Angular
  • Reactjs
    • ReactJS Introduction
  • Node JS
  • Android Studio
  • Jsp
  • Servlet
  • python
    • Python for beginners
  • Spring boot
  • Laravel 8
  • Laravel 9
  • Asp.net MVC
  • php
  • Flutter
  • Free Projects
  • Contact us
  • Privacy Policy
Home Java (page 4)

Java

Banking Deposit Amount Calculation in Java

By admin
October 20, 2022
in :  Free Projects, Java, Java Projects and Best Examples
0
1,498

In this tutorials will teach Banking Deposit Amount Calculation in Java following these conditions. User shall be able to choose as 200days 0r 100days option. if the user select 200days option includes 20% interest rate. if the user select 100days option includes 10% interest rate.

Read More

Student grade Calculation Scanner Using Java

By admin
October 17, 2022
in :  Java, Java Console Application Projects
0
648

Input the Student Indexno,Name,subjects in java Display the Student details Display the the max marks Display the total,average and grade Exit

Read More

Java Money Counter Calculator App

By admin
October 4, 2022
in :  Java, Java Projects and Best Examples
0
648

In this tutorials will teach Java Money Counter Calculator App step by step. Paste the code inside the calculate button. int salary = Integer.parseInt(txtSal.getText()); int notes,coins; notes = salary / 5000; salary = salary % 5000; System.out.println("5000 notes : " + notes); int fivethusand = notes; notes = salary / 1000; salary = salary % 1000; System.out.println("1000 notes : " …

Read More

max,min,total,average calculation using java

By admin
September 9, 2022
in :  Java Console Application Projects
0
349

create a 3 element integer to calculate and following min numbers max numbers total average

Read More

Array counting the 0 in Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
267

Create a 10 element integer array and store some integer values display as the counting of 0. public class JavaEx { public static void main(String args[]) { int numbers[] = {10,15,0,0,6,0,0,1,6,4}; int x,count,len; count = 0; len = numbers.length; for(x= 0; x < len; x++) { if(numbers[x]==0) { System.out.println(numbers[x]); count++; } } System.out.println(count); } } above examples  int numbers[] = …

Read More

DataInputStream using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
384

in this tutorials you will be learning  DataInputStream using Java.input the integer number and float number and press enter key then show output as readable integer number and float number. import java.io.DataInputStream; public class JavaEx { public static void main(String args[]) { DataInputStream in = new DataInputStream(System.in); int Intnum = 0; float Floatnum = 0.0f; try { System.out.println("Enter the Integer"); …

Read More

Math Function using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
493

Assume that we have to compute and print the square root of the number. public class JavaEx { public static void main(String args[]) { double a = 10; double b; b = Math.sqrt(a); System.out.println("b " + b); } }    

Read More

Student grade Calculation Console using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
402

Input the Student name,marks for 3 subjects,calculate the avg,grade. In order to calculate the grade using following conditions.

Read More

Employee Gross wage Calculation using Java

By admin
September 9, 2022
in :  Java Console Application Projects
0
288

input employee number,hourly rate calculate and display the gross payment using following condition. if the employee work more than 40 hours then he will be paid the hours work over 40 at the rate of two times than the normal rate others get the normal payment.

Read More

Employee Salary Calculation using Java

By admin
September 9, 2022
in :  Java, Java Console Application Projects
0
561

Input the employee name and basic salary calculate and display the netsalary using following condition if the basic salary is more than 50000 then include 10% Tax if the basic salary is more than 30000 then include 5% Tax otherwise no Tax.

Read More
1...345...18Page 4 of 18

Recent Posts

  • CREATE a Responsive Navigation Bar with FlexBox CSS!
  • Registration with image upload Java Jdbc(Download Source code)
  • Touchable shop Pos system using Java
  • Build Your First Responsive Login Form Using HTML and CSS FlexBox
  • Build Crud API with Laravel 12

© Copyright 2020, All Rights Reserved Powered by Tutussfunny