Friday, October 17, 2014

Basic Math Operations in Perl

I love to learn many things in life programming is not an exception there are thousands of programming language around us. Each one of them has a basic application just like PHP it is design for web development, C and C++ was design to use in system programming that interact with computer hardware and peripherals. One of the programming language that caught in my attention is PERL or Practical Extraction  Reporting Language developed by Larry Wall way back in 1987 to help him in his job as system administrator.

This programming language is often called the swiss army knife in programming community because it has many application not only in console but also in web development.  My experience in Perl is very fundamentals in a sense it is my outlet from my day to day work. I found Perl easy to use and delivers result effectively however in today's IT environment most of the web application specially here in the Philippines uses PHP as their primary language by many web developers maybe because there are many frameworks like WordPress, Drupal and Joomla that is written most of the time in PHP. Again I have to emphasize I do not compare this programming languages because each one of them has a specific application.  

This sample Perl program is my first time to create a web based program using Perl as my programming language. Most of my program in Perl is written in console environment I am using XAMPP as my Perl compiler and interpreter in this sample program. What is program will do is to show the use basic mathematical operations using Perl. The basic math operations are addition, subtraction, division and multiplication. The web browser that is used to run this program is torch a similar browser like google chrome.

If you find my work useful in your programming projects and assignments please send me an email at jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

Thank you very much.


Sample Output of Our Program

Program Listing

#!"D:\xampp\perl\bin\perl.exe"
print "Content-Type: text/html\n\n";

$a=10;
$b=5;
$add = ($a + $b);
$subtract  = ($a - $b);
$multiply = ($a * $b);
$division  = ($a / $b);

print "<hr size='10' color='green'>";
print "<center> <h2> <font color='blue' face='arial'> Basic Math Operations in Perl
  </h3> </center> </font>";
print "<hr size='10' color='green'>";
print "<br>";
print " <font color='red' face='comic sans ms' size='6'>Original Values for variable A is $a and
       for variable B is $b <br> </font>";
print "<br><br>";
print "<font color='blue' face='arial' size='5'>The sum of $a and $b is $add. </font> <br>";
print "<font color='blue' face='arial' size='5'>The difference between $a and $b is $subtract. </font> <br>";
print "<font color='blue' face='arial' size='5'>The product of $a and $b
     is $multiply. </font> <br>";
print "<font color='blue' face='arial' size='5'>The quotient of $a and $b
     is $division. </font> <br>";
print "<br><br>";
print "<font color='blue' face='comic sans ms' size='6'> End of Program</font> <br>";

 

DOWNLOAD SOURCE CODE HERE







Thursday, October 16, 2014

Email Address Checker

In this article I would like to share with you a sample program that will check whether the email address that is being given by the user is valid or invalid using C++ as my programming language.

If you like my work please send me an email at jakerpomperada@gmail.com and jakerpomperada@yahoo.com

Thank you very much.


Sample Output of Our Program


Program Listing

#include <iostream>

using namespace std;

bool check1(char* Address,bool Logic)


    {
    int bilA=0;
    for(int Loop1=0; Loop1<255; Loop1++)


        {
        if(Address[Loop1]=='@')


            {
            bilA++;
            if(Address[Loop1-1]==' '||Address[Loop1+1]==' ')


                {
                Logic = false;
                cout << "\n\a\t\tNo empty space before or after @!";
                break;
            }
        }
    }
    if (bilA<1||bilA>1)


        {
        Logic = false;
        cout << endl << "\a\t\tRecheck your number of @!" << endl;
    }
    return Logic;
}
bool check2(char* Address,bool Logic)


    {
    int bilDOT = 0;
   for(int Loop2=0; Loop2<255; Loop2++)


        {
        if(Address[Loop2]=='.')


            {
            bilDOT++;
            if(Address[Loop2-1]==' '||Address[Loop2+1]==' ')


                {
                Logic = false;
                cout << "\n\a\t\tNo empty space before or after dot!";
                break;
            }
        }
    }
    if (bilDOT<1||bilDOT>1)


        {
        Logic = false;
        cout << endl << "\a\t\tRecheck your number of dot!" << endl;
    }
    return Logic;
}


int main()


    {
    int Characters = 0;
    int Select;
    char Address[255] = "";


        bool Logic = true;

             cout << "\n\n\t\t  EMAIL ADDRESS CHECKER VERSION 1.0";
             cout << "\n\n\t  Created By: Mr. Jake Rodriguez Pomperada,MAED-IT";
             cout << "\n\n";
             cout << "\n\tEnter Your Email Address: ";
            cin.ignore();
            cin.get(Address,255,'\n');
            cin.ignore();
            Characters = strlen(Address);
            if(Logic)


                {
                Logic = check1(Address,Logic);
                Logic = check2(Address,Logic);
            }
            if(Address[0]=='@'||Address[Characters-1]=='@')


                {
                cout << endl << "\t\t\a@ misplaced at ends!" << endl;
                Logic = false;
            }
            if(Logic)


                {
                cout << "\n\t\t[ YOUR EMAIL IS VALID ]";

            }
            else


                {
                cout << "\n\t\t[ INVALID EMAIL!! ]";

            }

 cout << "\n\n\n";
 system("pause");

}

Thursday, October 9, 2014

Area of the Circle using Perl

In this article I would like to share with you a sample program to solve the area of the circle by this time I am using Perl as my programming language. The code is very simple and easy to understand.

If you have some questions please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com.

Thank you very much.


Sample Output of Our Program

Program Listing

## Written By: Mr. Jake R. Pomperada, MAED-IT
## Language : Perl
## Date     : October 9, 2014
#!usr/bin/perl
print "\n\n";
print "\t Area of the Circle";
print "\n\n";
print "Enter the Radius of the Circle? : ";
chomp ($radius=<>);
###########################################
## Formula to solve the area of the Cirle
$area = (3.14 * ($radius ** 2));
###########################################
print "\n\n";
print "The radius of the circle is $radius. \n";
print "The area of the circle is $area.";
print "\n\n";
print "\t\t Thank You For Using This Program.";
print "\n\n";

Addition of Three Numbers Using Perl

In this article I would like to share with you a very simple program that I wrote using Perl as my programming language. I am a beginner in terms of experience in writing codes using Perl or Practical Extraction Reporting Language.

A programming language developed by one of my favorite programmer Larry Wall way back in 1987 to help him in his system administration work before. This programming language is primarily used in server administration and web programming. What this program will do is to ask the user to enter three numbers and then our program will display the total sum of the three values early provided by our user.

If you have some questions regarding with my work in programming feel free to contact me through my email address at jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

Thank you very much.


Sample Output of Our Program

Program Listing

#!usr/bin/perl
print "\n\n";
print "\t Addition of Three Numbers";
print "\n\n";
print "Enter First Number  : ";
chomp($a=<>);
print "Enter Second Number : ";
chomp($b=<>);
print "Enter Third Number  : ";
chomp($c=<>);

$total_sum = ($a+$b+$c);
print "\n";
print "The total sum of $a, $b and $c is $total_sum.";
print "\n";
print "\t\t Thank You For Using This Program.";
print "\n\n";


 DOWNLOAD SOURCE CODE HERE
 



Print a Web Page Using JavaScript

In this article I will show you how to print a portion of your webpage using JavaScript as your scripting language. The code is very simple and short and can be used in your report generation in you website. I hope you will find my work useful in your web design and programming.

If you have some questions regarding my work please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com

Thank you very much.




Sample Output of Our Program


Find a Number in C++

In this article I would like to share with you a simple program that I wrote using C++ as my programming language to perform linear search or sequential search in computer science data structure. I called this program find a number. What this program will do first is to ask the user to enter five integer numbers after that our program will ask the user what number to be search in a given list. If the number can be found in the list our program will tell the user which location the value is located. If the number is not in the list our program will tell the user the value to be search cannot be found in the list.

I hope you will find my program useful in you programming assignments and projects using C++ as your primary programming language. If you have some questions please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com

Thank you very much.


Sample Output of Our Program

Program Listing

#include <iostream>
#include <stdlib.h>

using namespace std;

main() {

    int list=0,numbers[5];
    int search=0,dummy=0,location=0;
    int *mypointer;

     cout << "\n\t\t\tFIND A NUMBER 1.0";
     cout << "\n\n";

      mypointer = numbers;

    for (list=0; list < 5; list++) {
        cout << "Enter Value No. " << list+1 <<  " :" ;
        cin >> list[mypointer];
    }

   cout << "\n\n";
   cout << "Enter Number To Search : ";
   cin >> search;

   dummy = search;
     for (list=0; list < 5; list++) {
         if (search == list[mypointer]) {
            search = 1; // true value if found in the list
            location = list+1; // Determine the exact location of the number
     }
}
  if (search == 1){
       cout << "\n\n";
      cout <<"The number " << dummy <<
            " is found in the list";
      cout << "\n\n";
      cout << "The Exact Location in list is " <<
            location <<".";
  }
  else {
       cout << "\n\n";
      cout <<"The number " << dummy<<
            " Cannot be found in the list";
  }
  cout << "\n\n";
 system("PAUSE");
}


Wednesday, October 8, 2014

Menu Program in C++

This code that I wrote in C++ is a simple menu driven program that demonstrates how to construct a menu using C++. What is good about this program is that it does not accept invalid entries there's no way our menu program will crash for invalid entries from our user. I hope this program can help other people how to make their own menu program using C++ as there programming language.

If you have some questions about please send me an email at jakerpomperada@yahoo.com and jakerpomeperada@gmail.com

Thank you very much.


Sample Output of Our Program

Program Listing

// Created By: Mr. Jake Rodriguez Pomperada, MAED-IT
// Date : April 3, 2010 Saturday
// Tool : C++
// Email : jakerpomperada@yahoo.com
// Facebook Address : jakerpomperada@yahoo.com

#include <iostream>

using namespace std;

void  menu()
{
    char choice;
        system("cls");
        cout << "\n\t\t     MENU DEMO Version 1.0 ";
        cout << "\n\n\t Created By: Mr. Jake R. Pomperada, MAED-IT";
        cout << "\n\n";
        cout << "\n\t\t\t 1. Add Record ";
        cout << "\n\t\t\t 2. Edit Record ";
        cout << "\n\t\t\t 3. Delete Record ";
        cout << "\n\t\t\t 4. View Record ";
        cout << "\n\t\t\t 5. Quit Program ";
        cout << "\n\n";
        cout << "\n\t\t Enter Your Choice :=> ";
        cin >> choice;
        if (choice == '1') {
            cout << "\n\n You select Add";
            cout << "\n\n";
            system("pause");
            menu();
        }
        else if (choice == '2') {
            cout << "\n\n You select Edit";
            cout << "\n\n";
            system("pause");
            menu();
        }
    else if (choice == '3') {
            cout << "\n\n You select Delete";
            cout << "\n\n";
            system("pause");
            menu();
        }
        else if (choice == '4') {
            cout << "\n\n You select View";
            cout << "\n\n";
            system("pause");
            menu();
        }
         else if (choice == '5') {
            cout << "\n\n\tThanks for using this program and return to OS.";
            system("pause");
            menu();
        }
     else if (choice != '5') {
         cout << "\n\n\n \t\t\t Invalid Option Try Again...";
         cout << "\n\n";
        system("pause");

    }

}

main()
{
 char choice;
    do {
    menu();
    } while (choice != '5');
}


Sunday, October 5, 2014

Electricity Billing System in C++

In this article I would like to share with you my program that I wrote a long time ago in C++ I called this program electricity billing system. It is a menu driven program that will compute and generate bill reports of the consumer of electricity. What good of this program is the it is very easy to use and the code is very simple to understand by beginners in C++ programming.

If you like my work please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com.

Thank you very much.



Sample Output of Our Program




Saturday, October 4, 2014

Stop Watch in Visual Basic 6


A simple stop watch application that I wrote using Microsoft Visual Basic 6. The code uses timer control to generate time in seconds in Visual Basic 6. The code is very short and easy to understand for beginners that are new in Visual Basic programming.

If you have some questions please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com

Thank you very much.



Sample Output of Our Program


Program Listing

Private Sub cmdstart_Click()
    lbltime.Caption = "0"
    tmrwatch.Enabled = True
End Sub

Private Sub cmdstop_Click()
    tmrwatch.Enabled = False
End Sub

Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_Load()
    tmrwatch.Interval = 100
End Sub

Private Sub tmrwatch_Timer()
    lbltime.Caption = Str(Val(lbltime.Caption + 0.1))
End Sub

DOWNLOAD SOURCE CODE HERE

Scrolling Text in Visual Basic 6.0


A simple animation program that I wrote using Microsoft Visual Basic 6 to scroll a text in the form. I use timer control to generate the animation effects.

If you have some questions please send me an email at jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

Thank  you very much.



Sample Output of Our Program

Program Listing

Option Explicit
Dim strText As String

Private Sub cmdScroll_Click()
    strText = String(70, " ") + " Microsoft Visual Basic 6.0 "
    Timer1.Enabled = True
End Sub

Private Sub cmdQuit_Click()
Unload Me
End Sub

Private Sub Timer1_Timer()
    strText = Mid(strText, 2) & Left(strText, 1)
    txtMessage = strText
End Sub




Loan Interest Calculator in Visual Basic 6

A simple program that I wrote using Microsoft Visual Basic 6 to compute the loan by the customer based on the amount being loaned, number of years and the interest rate. The code is very simple and easy to understand.

If you have some questions please send me an email at jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

Thank you very much.



Sample Output of Our Program






Login System Using Microsoft Access

A login security system that I wrote in Microsoft Access to check if the user is a valid or not in the system. Im using VBA code for this application very code to understand. The code is very simple to understand and can be used as your basis in creating your own login security system for your Microsoft Access database applications.

If you have some questions please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com.

Thank you very much.



Sample output of our program






Number To Words Currency Converter in MS Access

This program that I wrote using Microsoft Ms Access 2007 as my programming language will ask the user to enter a number in numeric format and then the program will translate the numbers into words in currency.

If you like my work please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com.

Thank you very much.


Sample Output of Our Program


Student Grading System in Java


This Java application will compute and display the grade of the student in a class. What is good about this program is that it is a menu driven application it means it is very easy to use and can be helpful to the part of the teacher to process the grades of their perspective student.

I wrote this student grading system in Java using JCreator and Java SE compiler I hope my work will help you our in your programming projects and assignments using Java as your programming language.

If you have some questions please send me an email at jakerpomperada@yahoo.com and jakerpomperada@gmail.com

Thank you very much.


Sample Output of Our Program