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
Wednesday, September 2, 2020
Tuesday, September 1, 2020
Leap Year Checker in Bash
In this article, we will learn how to write a bash shell program to ask the user to give a year, and then the program will check and determine whether the given year is a leap year or not a leap year.
I am currently accepting programming work inventory system, enrollment system, accounting system, point of sale, school programming assignments and projects, payroll system, information system, website design and development using WordPress, 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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com
Program Listing
printf "\n\n"
printf "\tLeap Year Checker in Bash"
printf "\n\n"
printf "\tGive a Year: "
read y
printf "\n\n"
year=$y
y=$(( $y % 4 ))
if [ $y -eq 0 ]
then
printf "\tThe given year $year is Leap Year!"
else
printf "\tThe given $year is not a Leap Year!"
fi
printf "\n\n"
printf "\tEnd of Program"
printf "\n"
Saturday, August 29, 2020
Positive and Negative Number Checker in Bash
A simple program that I wrote using that will ask the user to give a number and then the program will check if the given number is a positive or negative number using bash scripting language.
I am currently accepting programming work inventory system, enrollment system, accounting system, point of sale, school programming assignments and projects, payroll system, information system, website design and development using WordPress, 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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com
Program Listing
# positive_negative.sh
#Bash Script to check whether a number is positive or not
#Jake R. Pomperada,MAED-IT,MIT
# Bacolod City, Negros Occidental
# jakerpomperada@gmail.com
printf "\n\n"
printf "\tPositive and Negative Number Checker in Bash"
printf "\n\n"
read -p "Enter a number: " number
printf "\n"
if [ $number -ge 0 ]
then
printf "\tThe given number $number is positive."
else
printf "\tThe given number $number is negative."
fi
printf "\n\n"
printf "\tEnd of Program"
printf "\n"
Friday, August 28, 2020
Thursday, August 27, 2020
Addition of Two Numbers in PHP
A simple program to add the sum of two numbers in php programming language.
I am currently accepting programming work inventory system, enrollment system, accounting system, point of sale, school programming assignments and projects, payroll system, information system, website design and development using WordPress, 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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com
Sunday, August 23, 2020
Odd and Even Numbers in C#
I wrote this simple program using C# programming language to ask the user to give a number and then the program will check and determine whether the given number is an odd or even number.
I am currently accepting programming work inventory system, enrollment system, accounting system, point of sale, school programming assignments and projects, payroll system, information system, website design and development using WordPress, 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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com
Sample Program Output
Program Listing
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Odd_and_Even_Numbers
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button3_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button1_Click(object sender, EventArgs e)
{
int a = 0;
a = Convert.ToInt32(textBox1.Text);
if (a % 2 == 0)
{
MessageBox.Show("The given number " + a + " is a Even Number.",
"The Result");
}
else
{
MessageBox.Show("The given number " + a + " is a Odd Number.",
"The Result");
}
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox1.Focus();
}
}
}
Saturday, August 22, 2020
Positive and Negative Numbers in C#
A simple program that I wrote using C# to ask the user to give a number and then the program will check and determine whether the given number is a positive or negative number.
I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com
Sample Program Output
Program Listing
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Positive_and_Negative_Numbers
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int a = 0;
a = Convert.ToInt32(textBox1.Text);
if (a >= 0)
{
MessageBox.Show("The given number " + a + " is a Positive Number.",
"The Result");
} else
{
MessageBox.Show("The given number " + a + " is a Negative Number.",
"The Result");
}
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text = "";
textBox1.Focus();
}
}
}
Wednesday, August 19, 2020
Tuesday, August 18, 2020
Loan Interest Solver
A simple program that I wrote to solve the loan interest of a customer using the C programming language.