Saturday, October 24, 2020

Bubble Sort in C++

Bubble Sort in C++

 In this articles, I will show you how to write a bubble sort program which uses C++ as our programming language using for loop statements and arrays data structures.

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



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

// addition_subtraction.cpp
// Jake Rodriguez Pomperada, MAED-IT, MIT
// www.jakerpomperada.blogspot.com / www.jakerpomperada.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental Philippines

#include <iostream>

using namespace std;

int main()
{
    int arr[100],n=0;
    int i=0,j=0,temp=0;

    cout <<"\n";
    cout <<"\t\tBubble Sort in C++\n\n";
    cout <<"\t  Jake R. Pomperada,MAED-IT,MIT";
    cout <<"\n\n";

cout<<"\tGive the size of array: ";
cin>>n;
    cout <<"\n\n";

for(i=0;i<n;++i) {
        cout<<"\tGive Array Element Value No."
         <<(i+1)<< " : ";
cin>>arr[i];
}

cout <<"\n\n";

cout <<"\tOriginal Arrangement of Values";
cout <<"\n\n";
cout <<"\t";
for(i=0;i<n;++i) {
cout<<" "<<arr[i];
}

for(i=1;i<n;++i)
{
for(j=0;j<(n-i);++j)
if(arr[j]>arr[j+1])
{
temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
    cout <<"\n\n";
cout<<"\tArray Arrangement After Bubble Sort";
cout <<"\n\n";
cout <<"\t";
for(i=0;i<n;++i) {
cout<<" "<<arr[i];
}
    cout <<"\n\n";
    cout <<"\tEnd of Program";
    cout <<"\n";
}



Mahalaga pa ba pag aralan ang C Programming Language sa 2020

Addition and Subtraction By Another Number in C++

Addition and Subtraction of Another Number in C++

 I wrote this program as a request of one of my subscriber in my youtube channel. This program that will ask the user to give two numbers and then the program will compute the sum of the two numbers. After which the program display two options to add and to substract the sum of two number by given a number value using if else statement in C++.  

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

// addition_subtraction.cpp
// Jake Rodriguez Pomperada, MAED-IT, MIT
// www.jakerpomperada.blogspot.com / www.jakerpomperada.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental Philippines

#include <iostream>

using namespace std;

int main()
{
    int a=0,b=0,sum=0,difference=0;
    int option=0,add=0,subtract=0;
    int total=0;

    cout <<"\n";
    cout <<"\tAddition and Subtraction of Another Number in C++";
    cout <<"\n\n";
    cout <<"\tGive First  Value : ";
    cin >> a;
    cout <<"\tGive Second Value : ";
    cin >> b;

    sum = (a+b);
    difference = (a-b);

    cout <<"\n\n";
    cout << "\tThe sum of " << a << " and " << b <<
         " is " << sum <<"."<<"\n";

    cout <<"\n\n";
    cout << "\tOption  [1] - Add  [2] Subtract : ";
    cin >> option;
    cout <<"\n\n";
    if (option == 1) {
        cout << "\tGive a Number To Add     : ";
        cin >>add;
        total = add+ sum;
    }
    else if (option == 2) {
        cout << "\tGive a Number To Subtract : ";
        cin >>subtract;
        total = sum - subtract;

    }
    cout <<"\n\n";
    cout << "\tThe total result is " << total <<".";
    cout <<"\n\n";
    cout <<"\tEnd of Program";
    cout <<"\n";
}




Friday, October 23, 2020

Cube Root Solver in C++

 A simple program that I wrote that will ask the user to give a number and then the program will convert the given number into its cube 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.


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

// Cube_Root_Solver.cpp
// Jake Rodriguez Pomperada, MAED-IT, MIT
// www.jakerpomperada.blogspot.com / www.jakerpomperada.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental Philippines

#include <iostream>
#include <math.h>

using namespace std;

int main()
{
    int num=0;
    double cube_root =0;

    cout <<"\n";
    cout <<"\tCube Root Solver in C++";
    cout <<"\n\n";
    cout <<"\tGive a Number : ";
    cin >> num;

    cube_root = pow(num,(float)1/3);

    cout <<"\n\n";
    cout << "\tThe Cube Root of " << num << " ] is "
         << cube_root << ".\n";
    cout <<"\n\n";
    cout <<"\tEnd of Program";
    cout <<"\n";
}



Sum and Difference of Two Numbers in C++

Sum and Difference of Two Numbers in C++

 A simple program program that I wrote using C++ to ask the user to give two numbers and then the program will compute the sum and difference of the two given numbers 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

// sum_difference.cpp
// Jake Rodriguez Pomperada, MAED-IT, MIT
// www.jakerpomperada.blogspot.com / www.jakerpomperada.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental Philippines

#include <iostream>

using namespace std;

int main()
{
    int a=0,b=0,sum=0,difference=0;

    cout <<"\n";
    cout <<"\tSum and Difference of Two Numbers in C++";
    cout <<"\n\n";
    cout <<"\tGive First  Value : ";
    cin >> a;
    cout <<"\tGive Second Value : ";
    cin >> b;

    sum = (a+b);
    difference = (a-b);

    cout <<"\n\n";
    cout << "\tThe sum of " << a << " and " << b <<
         " is " << sum <<"."<<"\n";
    cout << "\tThe difference between " << a << " and " << b <<
         " is " << difference <<"."<<"\n";
    cout <<"\n\n";
    cout <<"\tEnd of Program";
    cout <<"\n";
}




Addition of Two Numbers in Delphi

Addition of Two Numbers in Delphi

 A simple program that I wrote using Borland Delphi to ask the user to give two numbers and then the program will compute the sum of two numbers and display the results in the screen.

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

unit Addition;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Edit1: TEdit;
    Edit2: TEdit;
    Label4: TLabel;
    Button2: TButton;
    Button3: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  if MessageDlg('Do you really want to quit?', mtConfirmation,
      [mbYes, mbNo], 0) = mrYes then
    Close
  else
    form1.show;
end;


procedure TForm1.Button2Click(Sender: TObject);
var a,b : integer;
    x,y,sum : string;

begin
    x := edit1.Text;
    y := edit2.Text;

    a := StrToInt(x);
    b := StrToInt(y);

    sum := IntToStr(a+b);

    label4.caption := 'The sum of ' +x + ' and '
                + y + ' is ' + sum + '.';
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
   edit1.Text := '';
   edit2.Text  := '';
   label4.caption :='';
   edit1.SetFocus;
end;

end.

Product of Two Numbers in Delphi

Thursday, October 22, 2020

Product of Two Numbers in Delphi

 A simple program to ask the user to give two numbers and then program will compute the product of two numbers.

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

unit Product;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Label1: TLabel;
    Edit1: TEdit;
    Label2: TLabel;
    Edit2: TEdit;
    Label3: TLabel;
    Edit3: TEdit;
    Button1: TButton;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;
  a,b  : Integer;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
a := strtoint(edit1.Text);
b := strtoint(edit2.Text);

edit3.text := inttostr(a*b);
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
edit1.text := '';
edit2.text := '';
edit3.text := '';
edit1.SetFocus;
end;

end.

Payroll Program in PHP

Payroll Program in PHP

 A simple program using PHP to solve 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


<!doctype html>

<html>

<head>

<title>Payroll Program in PHP</title>

</head>

<body>


<style>

body {


font-family: arial;

size: 12px;

}

</style>

<form method="POST" action="">

<h2>Payroll Program in PHP</h2>

<?php

$days_work=$rate=$g_sal=$deduct=$n_sal=0;

if(isset($_POST['compute'])){

$days_work=$_POST['days_work'];

$rate=$_POST['interest_rate'];

$g_sal=$days_work*$rate;

$deduct=$g_sal*.1;

$n_sal=$g_sal-$deduct;

}

?>

<p>Number of Days Work: <input type="text" name="days_work" size="8" value="<?=$days_work;?>"/></p>

<p>Rate Per Day: <input type="text" name="interest_rate" size="8" value="<?=$rate;?>"/></p>

<p><input type="submit" name="compute" value="Compute Salary"/></p>

<p>

Gross Salary: <?=number_format($g_sal, 2);?><br/>

Deduction: <?=number_format($deduct, 2);?><br/>

Net Salary: <?=number_format($n_sal, 2);?>

</p>

</form>

</body>

</html>

Wednesday, October 21, 2020

LLE part 6

Square Root Converter in PERL

Square Root Converter in PERL

 I will show you how to write a Perl program that will ask the user to give a number and then the program will convert the given number to it's 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.


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

# square_root.pl
# Author : Jake Rodriguez Pomperada, MAED-IT
# Date   : November 4, 2019   Monday
# Email  : jakerpomperada@gmail.com
do {
system("cls");
print "\n\n";
print "\tSquare Root Converter in PERL";
print "\n\n";
print "\tGive a Number : ";
chomp($num_val =<>);
$result = sqrt($num_val);
print "\n";
print "\tThe Square Root Value of $num_val is $result.";
print "\n\n";
print "\tDo you want to continue Y/N? : ";
chomp($reply =<>);
} while (uc $reply eq 'Y');
print "\n";
print "\tEnd of Program";
print "\n\n";

Loan Interest Solver in Perl

Loan Interest Solver in PERL

 In this tutorial, I will show you how to write a Perl program that will ask the user the principal amount, number of years, and interest rate of the loan of the customer, and then the program will compute the interest amount to be paid by the customer and display the result on the screen.

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

# interest.pl
# Author  : Jake Rodriguez Pomperada, MAED-IT
# Date    : October 21, 2020
# Website : www.jakerpomperada.blogspot.com  / www.jakerpomperada.com 
# Email   : jakerpomperada@gmail.com

do {
system("cls");
print "\n\n";
print "\tLoan Interest Solver in PERL";
print "\n\n";
print "\tEnter Principal Amount PHP : ";
chomp($principal =<>);
print "\tEnter Number of Years      : ";
chomp($time =<>);
print "\tEnter Percent Rate %       : ";
chomp($rate =<>);
$solve_interest = ($principal * $time * $rate) / 100;
print "\n";
$result = sprintf("%.2f", $solve_interest); 
print "\n";
print "\tThe Interest is PHP $result.";
print "\n\n";
print "\tDo you want to continue Y/N? : ";
chomp($reply =<>);
} while (uc $reply eq 'Y');
print "\n";
print "\tEnd of Program";
print "\n\n";

Minimum and Maximum Number in Java