Learn Computer Programming Free from our source codes in my website.
Sponsored Link Please Support
https://www.techseries.dev/a/27966/qWm8FwLb
https://www.techseries.dev/a/19181/qWm8FwLb
My Personal Website is http://www.jakerpomperada.com
Email me at jakerpomperada@gmail.com and jakerpomperada@yahoo.com
Tuesday, October 20, 2020
Compound Interest in Java
A Java program that I wrote to ask the user to give the principal amount, rate, and years to be paid by the user.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Monday, October 19, 2020
Payroll Program in Java
I wrote this java program to compute the salary of an employee in the company.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Sunday, October 18, 2020
Leap Year in Visual Basic
A simple program that I wrote using Visual Basic 6 to ask the user to give a starting year and ending year and then the program will generate the list of years based on the given starting and ending years of the user.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Friday, October 16, 2020
Inches To Centimeter Converter in Java
A program that I wrote using Java programming language that will ask the user to give a value in inches and then the program will convert it into centimeter equivalent.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
/**
* @author Jake Rodriguez Pomperada,MAED-IT, MIT
* www.jakerpomperada.com / www.jakerpomperada.blogspot.com
* jakerpomperada@gmail.com
* Bacolod City, Negros Occidental Philippines
*/
import java.util.Scanner;
public class Inches_Centimeters {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
System.out.println("\n");
System.out.print("\tInches To Centimeter Converter in Java");
System.out.println("\n");
System.out.print("\tGive the inches: ");
float inches =in.nextFloat();
float cm = inches * 2.54f;
System.out.println("\n");
System.out.println("\t" +inches + " inches is "
+ cm + " centimeter(s).");
System.out.println();
System.out.println("\tEnd of Program");
System.out.println("\n");
}
}
Thursday, October 15, 2020
Simple Interest Loan Solver in Java
I will show you how to write a Java program to calculate simple interest loan by the customer in lending or a bank.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Absolute Value Number in Java
I will show you how to write a Java program to ask the user to give a number and then the program will convert the given number into an absolute value equivalent.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Wednesday, October 14, 2020
Square Root Number in Java
A simple program that I wrote using Java to ask the user to give a number and then the program will convert the given number into its square root equivalent.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
Addition and Difference of Two Numbers in Java
I will show you how to write a Java program to ask the user to give two numbers and then the program will compute and display the sum and difference of the two numbers given by the user.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
/**
* @author Jake Rodriguez Pomperada, MAED-IT, MIT
* jakerpomperada@gmail.com
* www.jakerpomperada.com / www.jakerpomperada.blogspot.com
* Bacolod City, Negros Occidental
* October 14, 2020 Wednesday
*/
import java.util.Scanner;
public class Addition_Difference {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
System.out.println("\n");
System.out.print("\t\tAddition and Difference of Two Numbers in Java");
System.out.println("\n");
System.out.print("\tGive First Value : ");
int a = input.nextInt();
System.out.print("\tGive Second Value : ");
int b = input.nextInt();
int addition = (a+b);
int difference = (a - b);
System.out.println();
System.out.println("\tThe sum of " + a + " and " + b + " is " + addition + ".\n");
System.out.println("\tThe product of " + a + " and " + b + " is " + difference + ".");
System.out.print("\n");
System.out.println("\tEnd of Program");
System.out.println("\n\n");
System.out.println("\n");
}
}