Thursday, August 18, 2022

High, Middle and Low Number in C

 Machine Problem

Write a program that will ask the user to give three numbers and then the program will check and evaluate which of the three numbers is the highest, middle and the lowest number using functions.

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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.




Program Listing

/* numbers.c
   Author    : Mr. Jake Rodriguez Pomperada,BSCS,MAED-IT
   Date      : November 28,2018  Wednesday  3:13 PM
   Location  : Bacolod City, Negros Occidental Philippines.
   Website  : http://www.jakerpomperda.com 
   Emails   : jakerpomperada@jakerpomperada.com and jakerpomperada@gmail.com
*/  
#include <stdio.h>
// function prototype declaration  
int high_number(int,int,int);

int main() {
int a=0,b=0,c=0;
printf("\n\n");
printf("\tHigh, Middle and Low Number in C");
printf("\n\n"); 
printf("\tEnter First Number  : ");
scanf("%d",&a);
printf("\tEnter Second Number : ");
scanf("%d",&b);
printf("\tEnter Third Number  : ");
scanf("%d",&c);    
high_number(a,b,c);
}
/* function high_number */
int high_number(int value1,int value2, int value3) {
  int high_value=0,low_value=0,middle_value=0;
   /* Check For Higher Number */
  if (value1 >= value2 && value1 >= value3) {
        high_value = value1;
    }
    else if (value2 >= value1 && value2 >= value3) {
        high_value = value2;
    }
    else if (value3 >= value1 && value3 >= value2) {
        high_value = value3;
    }

/* Check For Low Number */
  if (value1 <= value2 && value1 <= value3) {
        low_value = value1;
    }
    else if (value2 <= value1 && value2 <= value3) {
        low_value = value2;
    }
    else if (value3 <= value1 && value3 <= value2) {
        low_value = value3;
    }

 /*Check For Middle Value */
   if (value1 <= value2 && value1 >= value3 ) 
         {
        
        middle_value = value1;
    }
else  if (value2 <= value1 && value2 >= value3) 
      
         {
        
        middle_value = value2;
    }
else  if (value3 <= value1 && value3 >= value2) 
         {
        
        middle_value = value3;
    }

/* Code for check all the possible arrangement of values */
 /* Check for first value   */
else  if (value1 >= value2 && value1 <= value3) 
         {
       middle_value = value1;
    }
 /* Check for second value  */  
else  if (value2 >= value1 && value2 <= value3) 
         {
    
        middle_value = value2;
    }
 /* Check for third value */   
else  if (value3 >= value1 && value3 <= value2) 
         {
  middle_value = value3;
    }
printf("\n\n");
printf("\t===== DISPLAY RESULT =====");
printf("\n\n");
printf("\t%d is the Biggest number.",high_value);
printf("\n");
printf("\t%d is the Middle number.",middle_value);
printf("\n");
printf("\t%d is the Lowest number.",low_value);
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n"); 
}

Tuesday, August 16, 2022

Factorial a Number Using Function in C

Factorial a Number Using Function in C

 

Machine Problem

Write a program that uses a function that will ask the user to give a number and then the program will compute the factorial equivalent of the given number 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.





Program Listing

// factorial.cpp

// Author    : Mr. Jake R. Pomperada, BSCS,MAED-IT

// Date      : August 26, 2018   Sunday  5:19 PM

// Location  : Bacolod City, Negros Occidental Philippines.

// Website   : http://www.jakerpomperda.com

// Email     : jakerpomperada@jakerpomperada.com and jakerpomperada@gmail.com



#include <iostream>

#include <conio.h>


using namespace std;


 // function prototype declaration  

int factorial(int);  


int main()

{  

                

int num_input=0;

int solve=0;


cout <<"\n\n";

cout <<"\tFactorial a Number Solver";

cout <<"\n\n";

cout<<"\tGive a Number : ";

cin>>num_input;

solve= factorial(num_input);   

cout <<"\n\n";                                      

cout<<"\tThe factorial value of "<<num_input<<" is "<<solve<<".";

cout <<"\n\n";

cout << "\tEnd of Program";

cout <<"\n\n"; 

getch();

}


// function factorial


int factorial(int a)

{

int fact=1;


while(a>=1)

{

fact=fact*a;

a--;

}


return fact;

}


 



Monday, August 15, 2022

Area and Circumference of the Circle Using JOptionpane in Java

Area and Circumference of the Circle Using JOptionPane in Java

 Machine Problem

 Write a program that input from the user the radius of a circle as an integer and prints the circle's circumference and area using the predefined constant Math.PI.

Use the following formulas (r is the radius):

circumference = 2 PI r

area = PI r 2

 

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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.






Program Listing

Area_Circle.java

/* Write a program that input from the user the radius of a circle

as an integer and prints the circle's circumference and area

using the predefined constant Math.PI.


Use the following formulas (r is the radius):

circumference = 2 PI r

area = PI r 2

 * 

 */


import javax.swing.JOptionPane;

import java.text.DecimalFormat;

import java.lang.Math;  


public class Area_Circle {

private static final DecimalFormat df = new DecimalFormat("0.00");


public static void main(String[] args) {

// TODO Auto-generated method stub

// TODO Auto-generated method stub

  String r = 


         JOptionPane.showInputDialog( "Enter the radius of the circle:  " );

       double radius = Double.parseDouble(r); 

                  

     //Area = PI*radius*radius       

      double area=(Math.PI*(radius*radius));  

      //Circumference = 2*PI*radius

      double circumference= Math.PI * 2*radius;

      

      JOptionPane.showMessageDialog( null,  "The Area of the Circle :  " + df.format(area) + "\n"

        + "The Circumference of the Circle :  " + df.format(circumference)

        , "The Result", JOptionPane.INFORMATION_MESSAGE );


}


}


Sunday, August 14, 2022

Simple Login Using JS and PHP

Simple Login Using JS and PHP

A simple login and registration program that I wrote using JavaScript, PHP and MySQL.

 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.












Saturday, August 13, 2022

Simple CRUD Application Using JavaScript and PHP

Simple CRUD Application Using JavaScript and PHP

 A simple crud application using JavaScript and PHP 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.








Friday, August 12, 2022

Odd and Even Number in C++ Using Boolean Function

Odd and Even Number in C++ Using Boolean Function

 A simple program to ask the user to give a number and then the program will check if  the given number is an odd or even number using boolean function in C++ programming.

 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.





Program Listing

#include <iostream>

#include <cstdlib>


using namespace std;


bool isEven (int num);


int main()


{

     int val=0;

     cout <<"\n\n";

     cout << "\tOdd and Even Number in C++ Using Boolean Function";

     cout <<"\n\n";

     cout << "\tGive a Number: ";

     cin >> val;

     cout <<"\n\n";

     if ( isEven ( val ) )

          cout <<"\t" <<val << " is even number.";

     else

          cout <<"\t" << val << " is odd number.";

    

      cout <<"\n\n";

     system("PAUSE");

     return 0;

}

bool isEven ( int num )

{

     if ( num % 2 ) return false ;

     else return true; 

}




Thursday, August 11, 2022

Celsius To Fahrenheit Using JOptionPane in Java

Celsius To Fahrenheit Using JOptionPane in Java

 Machine Problem

Write a program that asks for a temperature in Celsius and prints out the temperature

in Fahrenheit. Use InputBox for input and OutputBox for output. The formula to

convert Celsius to the equivalent Fahrenheit is  fahrenheit = 1.8 x celsius + 32

 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.






Program Listing

/* Write a program that asks for a temperature in Celsius and prints out the temperature
in Fahrenheit. Use InputBox for input and OutputBox for output. The formula to
convert Celsius to the equivalent Fahrenheit is:
*
fahrenheit = 1.8 x celsius + 32
 * 
 */
package demo;


import javax.swing.JOptionPane;
import java.text.DecimalFormat;

public class Temperature {

private static final DecimalFormat df = new DecimalFormat("0.00");
 
public static void main(String[] args) {
// TODO Auto-generated method stub
  String celsius = 

         JOptionPane.showInputDialog( "Enter Temperature in Celsius : " );
       double celsius_temp = Double.parseDouble(celsius); 
      
      double Fahrenheit = (1.8 * celsius_temp) + 32; 
      
      JOptionPane.showMessageDialog( null,  "The temperature in Fahrenheit :  " + df.format(Fahrenheit) 
        , "The Result", JOptionPane.INFORMATION_MESSAGE );
}

}


Tuesday, August 9, 2022

Concatenation of FirstName and LastName in C++

Concatenation of FirstName and LastName in C++

 A program that will accept the users firstrname and lastname and then it will concatenate the firstname and lastname using C++ 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.





Program Listing

name.cpp


#include <iostream>
#include <string>

using namespace std;

main() {
    string first_name, last_name;
    string complete;
    
    cout <<"\n\n";
    cout <<"\tConcatenation of FirstName and LastName in C++";
    cout <<"\n\n";
    cout << "\tEnter your first name : ";
    cin >> first_name;
    cout << "\tEnter your last name : ";
    cin >> last_name;
    cout << "\n\n";
    complete = first_name +  " " + last_name;
    cout << "\tHello " << complete << ".";

    cout << "\n\n";
    system("PAUSE");
}

Miles To Kilometers in Python

Miles To Kilometers in Python

 A simple program to ask the user to give distance value in miles and convert it into kilometers in python 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 at 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada

Thank you very much for your support.





Program Listing

miles_kilometers.py

print()
print("\tMiles To Kilometers in Python\n")
miles = float(input("Enter Miles : "))
kilometers = round(miles * 1.6,2)
print()
print(round(miles, 2), " miles(s) is equal to ", round(kilometers,2), " kilomenter(s).")
print()
print("End of Program")