Sunday, December 29, 2019

Tables in HTML

In this article, I would like to share with you guys how to use tables in HTML.

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, 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
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Program Listing

index.html

<!DOCTYPE html>
<html>
    <body>
        <head><title>Headings in table</title></head>
    </body>
        <table border="1">
                <tr>
                    <th>Heading</th>
                    <th>Another Heading</th>
                </tr>
                <tr>
                    <td>row 1, cell 1</td>
                    <td>row 1, cell 2</td>
                </tr>
                 <tr>
                    <td>row 1, cell 1</td>
                    <td>row 2, cell 2</td>
                </tr>
            
        </table>
</html>

Wednesday, December 25, 2019

Perfect Square Checker in C Language

I wrote this program to ask the user to give a number and then the program will check whether the given number is a perfect square number or not.

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, 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
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/




Sample Program Output

Program Listing

perfect_square.c

/* perfect_square.c
   Jake R. Pomperada
   December 25, 2019 
   Wednesday   */

#include<stdio.h>

int main()
{
    printf("\n\n");
printf("\tPerfect Square Checker in C Language");
    printf("\n\n");
      int i=0, number=0;
    printf("\tGive a Number : ");
    scanf("%d", &number);

   
    for(i = 0; i <= number; i++)
    {
        if(number == i*i)
        {
            printf("\n");
            printf("\tThe given number %d is a Perfect Square Number.",number);
            return 0;  
        }
    }
     printf("\n");
     printf("\tThe given number %d is Not Perfect Square Number.",number);
     printf("\n");
     printf("\tEnd of Program");
     printf("\n");
}



Count Number of Words and Digits in a Sentence in C++

I wrote this program to ask the user to give a sentence and then the program will count the number of words and digits in the sentence and display the results on the screen using a C++ programming language.

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, 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
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/


Program Listing

sentence.cpp

// Word and Number Counter 1.0 in C++
// Author : Mr. Jake Rodriguez Pomperada, MAED - Instructional Technology
// Date   : October 3, 2009 Saturday
// Email  : jakerpomperada@yahoo.com


#include <iostream>
#include <string>
#include <cctype>


using namespace std;

// Function to count the words in the sentence

 int WordCount(string sentence)
{
    int length = sentence.length();
    int words = 1;

    for (int size = 0; length > size; size++)
    {

       if (sentence[size] == ' ' && sentence[size-1] != ' ')
         words++;      // Count the words if there is a space
    }
    if ( sentence[0] == ' '/*space*/ )
      words--;
    return words ;
}


// Function to count digits in the sentence

 int NumCount(string sentence)
{
   int digits=0,count=0;

  char c;

while ( sentence[count] != '\0' && sentence[count] != '\n' ) {
  c = toupper( sentence[count] );

    if(c>='0'&& c<='9') {

digits++;
    }
count++;
}
 return digits;

}


main()
 {
     char string2[500];

     cout << "\n\n\t\t  WORD AND NUMBER COUNTER 1.0 in C++ ";
     cout << "\n\n\t  Created By: Mr. Jake Rodriguez Pomperada, MAED-IT";
     cout << "\n\n\n";

     cout << "Enter a sentence :=> ";
     cin.getline(string2,500);

     cout << "\n\n\n";
     cout << "\n\t === GENERATED REPORT === ";
     cout << "\n\nThe number of word(s) in the sentence is "
          << WordCount(string2) << ".";
     cout << "\n\nThe number of digits(s) in the sentence is "
          << NumCount(string2) << ".";
     cout << "\n\n";

   system("PAUSE");
 } // End of Code

Global and Local Variables in C++

Here is a simple program in C++ to show how to declare and use local and global variables.

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, 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
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/


Program Listing

#include <iostream>

using namespace std;

int Displayg_var();
int Func1();
int Func2();

int g_var=0;

int main()
{

    Displayg_var();
                                          system("Pause");
    g_var=6;
                                          system("Pause");
    Displayg_var();
                                          system("Pause");
    Func1();
                                          system("Pause");
    Displayg_var();
                                          system("Pause");
    Func2();

    system("Pause");
    return 0;
}

int Displayg_var()
{
    cout<<"\n\nThe Value of v_gar now is: "<<g_var<<endl;
}

int Func1()
{
    g_var=3;
}

int Func2()
{
    int g_var;

    g_var=101;
    cout<<"\n\nThe value of g_var(local variable) inside Func2 is: "<<g_var<<endl;
}


Tuesday, December 24, 2019

Kilogram To Ounce Converter in JavaScript

I wrote this program to ask the user to give kilogram value and then it will convert into ounce weight equivalent using JavaScript programming language.

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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/




Sample Program Output


Program Listing

index.html

<html>
  <head>
   <title>Kilogram To Ounce Converter in JavaScript</title>
  </head>
  <body>
  <style>
      body {
       font-family: arial;
       font-size: 20px;
       font-weight: bold;
      }
   </style>
<script type="text/javascript">
   function forward() {
      with (document.convert) {
unit1.value = unit1.value.toString().replace(/[^\d\.eE-]/g,'');
if (unit1.value/0.0252 != 0) {
    unit2.value = (unit1.value/0.0252).toFixed(2);
}
      }
   }
   function backward() {
      with (document.convert) {
unit2.value = unit2.value.toString().replace(/[^\d\.eE-]/g,'');
if (unit2.value*0.0252 != 0) {
    unit1.value = (unit2.value*0.0252).toFixed(2);
}
      }
   }
</script>

<h4></h4>
<noscript><p><font color="red"><strong>Please enable Javascript
to use the unit converter</strong></font></p></noscript>
<form name="convert" style="font-size:1.3em;border:solid 1px #B7D7AF;border-radius:7px;background-color:#EEEEEE;margin-right:10px;padding-left:10px;padding-right:10px">
<br />
<tr>
<td><strong>Kilogram To Ounce Converter in JavaScript</strong></td></tr>
<table border="0" cellpadding="7" cellspacing="0">

<tr>
<td><input type="number" step="0.1" name="unit1" style="width:200px;font-size:1em" onchange="forward()" value=""></td><td><strong>Kilogram</strong></td></tr>
<tr><td><input type="number" step="0.1" name="unit2" style="width:200px;font-size:1em" onchange="backward()" value=""></td><td><strong>Ounce</strong></td></tr>
<tr><td><input type=button value="Convert" style="font-size:1em;margin-bottom:15px" onclick="forward()"></td></tr></table>
</form>
</body>
</html>



Product of Two Numbers in JavaScript

I wrote this program using JavaScript to ask the user to give two numbers and then the program will compute the product of two numbers and display the results using an alert dialog box in JavaScript.

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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/



Sample Program Output


Program Listing

index.html

<html>
  <head>
   <title>Product of Two Numbers in JavaScript</title>
  </head>
  <style>
      body {
       font-family: arial;
       font-size: 20px;
       font-weight: bold;
      }
   </style>
  <body>
 
<script>
function product(){
var num1=document.form.text1.value;
var num2=document.form.text2.value;
var sum=Number(num1)*Number(num2);
alert("The product between " + num1 + " and " + num2 + " is " + sum + ".");
}
</script>
<form name="form"><br>
<h4>Product of Two Numbers in JavaScript</h4>
<table>
<tr>
<td>Enter First Number:</td>
<td><input type="text" name="text1"></td>
</tr>
<tr>
<td>Enter Second Number:</td>
<td><input type="text" name="text2"></td>
</tr>
<tr>
<tr></tr><tr></tr>
<td><input type="button" value="Solve For Product" onclick="product();"></td>
</tr>
</table>
</body>
</html>


Monday, December 23, 2019

Highest To Lowest Salary in C++ Language

I wrote this program to sort the name and salary of the employees from highest to lowest using C++ programming language.

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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com



Sample Program Output


Program Listing

salary.cpp

//  salary.cpp
//   Author : Jake R. Pomperada,MAED-IT
//   December 22, 2019    10:09 AM
//   Monday
//   Bacolod City, Negros Occidental Philippines 
//   www.jakerpomperada.com
//   jakerpomperada@gmail.com

#include <iostream>
#include <iomanip>

using namespace std;

struct employee
{
    double salary ;
    char emp_name[200];
}emp_records[200],t;

int main()
{
    int i=0,j=0,n=0;
    cout <<"\n\n";
    cout <<"\tHighest To Lowest Salary in C++ Language";
    cout <<"\n\n";
    cout <<"\tHow many employees? : ";
    cin >> n;
   
    for(i=0;i<n;i++)
    {
         cin.ignore();
         cout <<"\tGive Employees Name   : ";
         cin.getline(emp_records[i].emp_name,100);
        
       
         cout <<"\tGive Employees Salary : ";
         cin >>emp_records[i].salary;
    }
    
    for(i=0;i<n;i++)
    {
        for(j=0;j<n-1;j++)
        {
            if(emp_records[j].salary<emp_records[j+1].salary)
            {
                t=emp_records[j];
                emp_records[j]=emp_records[j+1];
                emp_records[j+1]=t;
            }
        }
    }
    cout<<"\n\n";
    cout <<"\tEmployees that has the Highest to Lowest Salary\n\n";
    cout <<setw(25)<<" EMPLOYEES NAME" <<setw(15)<<"SALARY\n";
    cout <<setw(20)<<"-------------------------------------------------\n\n";
    
    for(i=0;i<n;i++)
    {
       cout <<fixed;
   cout <<setw(25)<<emp_records[i].emp_name <<setw(12)<<"PHP "<<setprecision(2)
   <<emp_records[i].salary<<"\n""";
    }
    cout <<"\n\n";
    cout <<"\tEnd of Program";
    cout<<"\n\n";
}



Sunday, December 22, 2019

Highest To Lowest Scores in C Language

A simple program that I wrote using C programming language that will ask the user how many basketball players to be a process of our program and then the program will ask the basketball player names and their perspective score in a basketball game. The program will sort the name of the basketball players based on the highest score in a table being generated by our program.

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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/



Sample Program Output


Program Listing

score.c

/* scores.c
   Author : Jake R. Pomperada,MAED-IT
   December 22, 2019    10:29 PM
   Sunday
   Bacolod City, Negros Occidental Philippines */

#include <stdio.h>
#include <conio.h>

struct student
{
    int  scores;
    char name[100];
}players[100],t;

void main()
{
    int i=0,j=0,n=0;
    printf("\n\n");
    printf("\tHighest To Lowest Scores in C Language");
    printf("\n\n");
    printf("\tEnter the no of Basketball Players: ");
    scanf("%d",&n);
   
    for(i=0;i<n;i++)
    {
         getchar();
printf("\tEnter Basketball Player Name  : ");
         gets(players[i].name);
       
         printf("\tEnter Basketball Player Score : ");
         scanf("%d",&players[i].scores);
    }
    
    for(i=0;i<n;i++)
    {
        for(j=0;j<n-1;j++)
        {
            if(players[j].scores<players[j+1].scores)
            {
                t=players[j];
                players[j]=players[j+1];
                players[j+1]=t;
            }
        }
    }
    printf("\n\n");
    printf("\tBasketBall Players that has the Highest to Lowest Points\n");
    printf("\n\t\tNAME\t\t\t\tSCORES\n");
    printf("-------------------------------------------------------------------------------\n");
    for(i=0;i<n;i++)
    {
        printf("\t\t%s\t\t\t%d\n",players[i].name,players[i].scores);
    }
    printf("\n\n");
    printf("\tEnd of Program");
    printf("\n\n");
}