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

JOHN REGALA AT CHUCKIE DREYFUS, MULING NAGHARAP!

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"
 

Positive and Negative Number Checker in Bash

Thursday, August 27, 2020

Addition of Two Numbers in Bash

Bash Hello World

Separable First-Order Differential Equations

Addition of Two Numbers in PHP

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


Sample Program Output


Program Listing

index.php

<html>
  <head>
    <title>Addition of Two Numbers in PHP </title>
   </head>
   <style>
     body {
      font-family: arial;
      size : 12px;
       }
   </style>
   <body>
      <?php
      $a=100;  $b=20;

      $sum = ($a+$b);

  echo "<h4> Addition of Two Numbers in PHP </h4>";
  $a_display = '$a';
  $b_display = '$b';
      echo "The value in variable is $a_display is $a.<br>";
      echo "The value in variable is $b_display is $b.<br>";
      echo "<h4> The sum of $a and $b is $sum.<h4>";
    ?>
   </body>
   </html>   
       


Sunday, August 23, 2020

Odd and Even Numbers in C#

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

No Copyright Happy Background Music - Free Download

Positive and Negative Numbers in C#

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();

        }

    }

}



Tuesday, August 18, 2020

Loan Interest Solver

Loan Interest Solver

 A simple program that I wrote to solve the loan interest of a customer using the C programming language.

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

/* loan_solver.c   
   Jake Rodriguez Pomperada,MAED-IT,MIT
   jakerpomperada@gmail.com  */

#include <stdio.h>

int main()
{
    float principal=0.00, time=00;
float rate=0.00, solve_interest=0.00;
    
system("COLOR F0");
printf("\n\n");
    printf("\tLoan Interest Solver");
printf("\n\n");
    printf("\tEnter Principal Amount PHP : ");
    scanf("%f",&principal);
    printf("\n");
    printf("\tEnter No. of Years  : ");
    scanf("%f",&time);
    printf("\n");
    printf("\tEnter Percent Rate % : ");
    scanf("%f",&rate);
     
    solve_interest = (principal * time * rate) / 100;

  printf("\n\n");
    printf("\tThe Interest is PHP %.2f.",solve_interest);
    printf("\n\n");
printf("\tEnd of Program"); 
printf("\n\n");
  }


Area of the Circle Solver in C