Wednesday, October 21, 2020

Minimum and Maximum Number in Java

 A program that will ask the user how many element to be process in array and then the program will determine which of the given number in minimum and maximum number using Java programming language.

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



                                                   Sample Program Output


Program Listing

/**
 * @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 Minimum_Maximum_Numbers {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
        
int n=0, sum = 0;
int min=0, max=0; 
        System.out.println("\n");
        System.out.print("\tMinimum and Maximum Number in Java");
        System.out.println("\n");
                 
        System.out.print("\tEnter no. of elements you want in array:");
        n = in.nextInt();
        int a[] = new int[n];
        
        for(int i = 0; i < n; i++)
        {
        System.out.print("\tGive element "
        + " value no." + (i+1) + " : ");
        a[i] = in.nextInt();
            
        }
        
        min = max = a[0];
        
        for(int i=1; i < n; i++) {
        if(a[i] < min) min = a[i];
        if(a[i] > max) max = a[i];
        }
        System.out.println();
        System.out.println("\tMinimum Number  : " + min +"." ); 
        System.out.println("\tMaximum Number  : " + max +"." );
        System.out.println();
        System.out.println("\tEnd of Program");
        System.out.println("\n");
}

}


Tuesday, October 20, 2020

Kilometers To Miles in Java

 A program that will ask the user to give a distance in kilometers and then it will convert into miles equivalent using Java programming language.

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.




Sample Program Output


Program Listing

/**
 * @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;
import java.text.DecimalFormat;

public class Kilometers_Miles {

private static DecimalFormat df2 = new DecimalFormat("#.###");

public static void main(String[] args) {
// TODO Auto-generated method stub
  Scanner in = new Scanner(System.in);
        
        System.out.println("\n");
        System.out.print("\tKilometers To Miles in Java");
        System.out.println("\n");
        System.out.print("\tEnter Number of Kilometers : ");
        
        double km =in.nextDouble();
        double miles = (km * 0.621);
        
        System.out.println("\n");
        System.out.println("\t" + km + " Kilometer(s) is "
                          + df2.format(miles) + " Miles(s).");
        System.out.println();
        System.out.println("\tEnd of Program");
        System.out.println("\n");

}

}



Arithmetic Operators in Java

 A program that I wrote using Java programming language that will ask the user to give two numbers and then the program will compute the sum, difference, product, and quotient 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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

/**
 * @author Jake Rodriguez Pomperada,MAED-IT, MIT
 * www.jakerpomperada.com / www.jakerpomperada.blogspot.com
 * jakerpomperada@gmail.com
 * Bacolod City, Negros Occidental Philippines
 * October 20, 2020  
 */

import java.util.Scanner;

public class Arithmetic_Operators {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
        
        System.out.println("\n");
        System.out.print("\tArithmetic Operators in Java");
        System.out.println("\n");
        System.out.print("\tGive First Value  : ");
        int a =in.nextInt();
        System.out.print("\tGive Second Value : ");
        int b =in.nextInt();
        
        int addition = (a+b);
        int subtract = (a-b);
        int product  = (a*b);
        int quotient = (a/b);
        
        System.out.println("\n");
        System.out.println("\t===== DISPLAY RESULTS =====");
        System.out.println();
        System.out.println("\tThe sum of " + a + " and "
                    + b + " is " + addition +".");
        System.out.println("\tThe difference of " + a + " and "
            + b + " is " + subtract +".");
               System.out.println("\tThe product of " + a + " and "
    + b + " is " + product +".");
        System.out.println("\tThe quotient of " + a + " and "
            + b + " is " +  quotient  +".");
        System.out.println();
        System.out.println("\tEnd of Program");
        System.out.println("\n");

}

}


Average Score in Java

Average Score in Java

 A simple program that I wrote using Java programming language to compute the average score 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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.





Program Listing


/**

 * @author Jake Rodriguez Pomperada, MAED-IT, MIT

 * jakerpomperada@gmail.com

 * www.jakerpomperada.com

 * Bacolod City, Negros Occidental

 * October 20, 2020   Monday

 */



import java.util.Scanner; 

public class Average_Score {


public static void main(String[] args) {

// TODO Auto-generated method stub


int score1, score2, score3, score4, score5 ;  

    double average;              

    char repeat;                 

    String input;                

      

            

      Scanner keyboard = new Scanner(System.in);

      

      

      do

      {

      

       System.out.println("\n");

  System.out.print("\t\tAverage Score in Java");

        System.out.println("\n");

      

               

         System.out.print("\tEnter Score No. 1 : ");

         score1 = keyboard.nextInt();

         


         System.out.print("\tEnter Score No. 2 : ");

         score2 = keyboard.nextInt();

         


         System.out.print("\tEnter Score No. 3 : ");

         score3 = keyboard.nextInt();

         

         System.out.print("\tEnter Score No. 4 : ");

         score4 = keyboard.nextInt();

         

         

         System.out.print("\tEnter Score No. 5 : ");

         score5 = keyboard.nextInt();

                   

         keyboard.nextLine();


          average = (score1 + score2 + score3 + score4 + score5) / 5.0;

          System.out.println();

         System.out.println("\tThe average score is " + average);

         System.out.println();   


         System.out.print("\tContinue Y for yes or N for no: ");

         input = keyboard.nextLine();  

         repeat = input.charAt(0);     


      } while (repeat == 'Y' || repeat == 'y');

      System.out.print("\n\n");

  System.out.println("\tEnd of Program");

  System.out.println("\n\n");

}


}


Compound Interest in Java

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.





Sample Program Output




Program Listing


Compound_Interest,java

/**
 * @author Jake Rodriguez Pomperada, MAED-IT, MIT
 * jakerpomperada@gmail.com
 * www.jakerpomperada.com
 * Bacolod City, Negros Occidental
 * October 20, 2020   Monday
 */


import java.util.Scanner; 
import java.text.DecimalFormat;

public class Compound_Interest {
private static DecimalFormat df2 = new DecimalFormat("#.###");

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\tCompound Interest m in Java");
        System.out.println("\n");
      
      System.out.print("\tEnter Principal Amount   :  ");
      double principal_amt = input.nextDouble();
    
      System.out.print("\tEnter Interest Rate      :  ");
      double rate = input.nextDouble();
    
      System.out.print("\tEnter Number of Years    :  ");
      double time = input.nextDouble();
    
        // Calculate compound interest rate here 
      
      double CI = principal_amt * 
                 (Math.pow((1 + rate / 100), time));
        
     System.out.print("\n");
     System.out.println("\tThe Compound Interest is $  "+ df2.format(CI)); 
     System.out.print("\n\n");
System.out.println("\tEnd of Program");
System.out.println("\n\n");
}

}

Monday, October 19, 2020

Payroll Program in Java

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

/**
 * @author Jake Rodriguez Pomperada, MAED-IT, MIT
 * jakerpomperada@gmail.com
 * www.jakerpomperada.com
 * Bacolod City, Negros Occidental
 * October 19, 2020   Monday
 */


import java.util.Scanner; 
import java.math.RoundingMode;
import java.text.DecimalFormat;

public class Payroll_Program {

/**
* @param args
*/
private static DecimalFormat df2 = new DecimalFormat("#.###");

public static void main(String[] args) {
// TODO Auto-generated method stub
  String emp_name;         
      int hours;           
      double payRate;      
      double grossPay;     
      

      Scanner input = new Scanner(System.in);
      
      System.out.println("\n");
  System.out.print("\t\tPayroll Program in Java");
        System.out.println("\n");
      
      System.out.print("\tGive Employees Name :  ");
      emp_name = input.nextLine();
     
      System.out.print("\tHow many hours did you work this week? : ");
      hours = input.nextInt();
      
      
      System.out.print("\tWhat is your hourly pay rate? : ");
      payRate = input.nextDouble();
      
       grossPay = hours * payRate;
      
      System.out.print("\n");
      System.out.print("\t===== Display Records =====");
      System.out.print("\n\n");
      System.out.println("\tEmployees Name :  " + emp_name);
      System.out.println("\tGross Pay      : PHP " + df2.format(grossPay));
      System.out.print("\n\n");
  System.out.println("\tEnd of Program");
       System.out.println("\n\n");
}

}

Sunday, October 18, 2020

Leap Year in Visual Basic

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

Option Explicit

Public Function IsLeapYear0(ByVal y As Integer) As Boolean
    On Error Resume Next
    IsLeapYear0 = False
    'If the year is evenly divisible by 4 and not by 100, then this
    'is a leap year.
    If y Mod 4 = 0 And y Mod 100 <> 0 Then
        IsLeapYear0 = True
        'If the year is evenly divisible by 4 and 100, then check to
        'see if the quotient of year divided by 100 is also evenly
        'divisible by 4. If it is, then this is a leap year.
    ElseIf y Mod 4 = 0 And y Mod 100 = 0 Then
        If (y \ 100) Mod 4 = 0 Then IsLeapYear0 = True
    End If
End Function


Private Sub Command1_Click()
Dim y As Integer

    For y = Val(Text1.Text) To Val(Text2.Text)
        If IsLeapYear0(y) Then lstLeapYears(0).AddItem y
    Next y
End Sub

Private Sub Command2_Click()
Text1.Text = ""
Text2.Text = ""
lstLeapYears(0).Clear
Text1.SetFocus
End Sub

Private Sub Command3_Click()
End
End Sub


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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

/**

 * @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");


}


}


Simple Interest Loan Solver in Java

Simple Interest Loan Solver in Java

TUPV 41st Commencement Exercises - Baccalaureate Mass

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

import java.util.Scanner;

public class Simple_Interest_Solver {

public Simple_Interest_Solver() {
// TODO Auto-generated constructor stub
public static void main(String[] args) {
// TODO Auto-generated method stub
// create an object of Scanner class
Scanner input = new Scanner(System.in);

   System.out.println("\n");
   System.out.print("\t\tSimple Interest Loan Solver in Java");
   System.out.println("\n");
    
    // take input from users
    System.out.print("\tGive the principal amount : ");
    double principal = input.nextDouble();

    System.out.print("\tGive the interest rate: ");
    double rate = input.nextDouble();
    rate = rate/100;

    System.out.print("\tGive the time: ");
    double time = input.nextDouble();

    double interest = (principal * time * rate) / 100;

    System.out.println("\n");
    System.out.println("Principal: $ " + principal);
    System.out.println("Interest Rate: " + rate);
    System.out.println("Time Duration: " + time);
    System.out.println("Simple Interest: $ " + interest);
    System.out.print("\n");
          System.out.println("\tEnd of Program");
    System.out.println("\n\n");
    input.close();
             
}

}



Absolute Value Number in Java

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.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.

Program Listing

import java.util.Scanner;


public class Absolute_Value {

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\tAbsolute Value Number in Java");
   System.out.println("\n");
       System.out.print("\tGive a Number  :  ");
        
       double a = input.nextInt();
       
       System.out.println();
       System.out.println("\tThe absolute value of " + a + " is " +Math.abs(a) + ".");
       
       System.out.print("\n");
       System.out.println("\tEnd of Program");
       System.out.println("\n\n");
       System.out.println("\n");


}

}



Paano Ba Mag Apply ng Trabaho na Epektibo