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
Saturday, October 24, 2020
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.
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.
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.
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.
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.
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.
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.
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
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.
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.