Saturday, November 14, 2020

HTML Forms Input and Display in PHP

 In this tutorial I will show you how to create and use HTML forms with PHP 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 at 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

index.php

<html>

  <head> 

   <title>HTML Forms Input and Display in PHP</title>

  </head>

  <body> 

    <style type="text/css">

      

      body {

        font-family: arial;

            size: 12px;

      };

    </style>

   

   <?php

     $display="";

     $firstname = $_POST['firstname'];

     $middlename = $_POST['middlename'];

     $lastname   = $_POST['lastname'];


   if(isset($_POST['submit'])) {

      $display .= "<h2> Display Results </h2>";

      $display .= "First Name  : " .

                  strtoupper($firstname) ."<br/>";

      $display .= "Middle Name : " . 

                  strtoupper($middlename)."<br/>";

      $display .= "Last Name   : " . 

                    strtoupper($lastname)."<br />";

    }


if (isset($_POST['clear'])) {

   $firstname ="";

   $middlename ="";

   $lastname ="";

   $display ="";

   } 

 ?>   

    <h2> HTML Forms Input and Display in PHP </h2>

<form method="post">

   <p>First Name: <input type="text" name="firstname"

    value="<?php echo $firstname; ?>" autofocus

    ></p>

   <p>Middle Name: <input type="text" name="middlename"

    value="<?php echo $middlename; ?>"></p>

   <p>Last Name: <input type="text" name="lastname" 

    value="<?php echo $lastname; ?>"></p>

   <input type="submit" name="submit" value="Submit" />

   &nbsp;&nbsp;&nbsp;

   <input type="submit" name="clear" value="Clear" />

</form>

  <?php


    echo $display;

   ?> 

 </body>

 </html>

Friday, November 13, 2020

Average of Three Numbers in PHP

 I wrote this program to compute the average value of three numbers using PHP 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 at 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

Your support on my channel is highly appreciated.

Thank you very much.



Program Listing

<?php

/* average_three.php

   Jake Rodriguez Pomperada, MAED-IT, MIT

   www.jakerpomperada.com / www.jakerpomperada.blogspot.com

   jakerpomperada@gmail.com

   Bacolod City, Negros Occidental, Philippines

*/


$val1 = 20;

$val2 = 30;

$val3 = 40;


$num_of_values = 3;


$total_sum = ($val1 + $val2 + $val3);


$average= ($total_sum / $num_of_values);


echo "<h2>Average of Three Numbers in PHP </h2>";

echo "<h2>The given values are $val1, $val2, and $val3.</h2>";

echo "<h2>The average value is $average.</h2>";


?>


Count Digits in VB NET

Count Digits in VB.NET

  In this tutorial, I will show you how to write a program that will ask the user to give a series of 

numbers and then the program will count the digits in a given number using Visual Basic NET 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 at 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

Your support on my channel is highly appreciated.

Thank you very much.








Program Listing


Public Class Form1


    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

        Dim st_text As String


        st_text = TextBox1.Text


        Dim count As Integer = 0

        Dim i As Integer

        Dim arr() As Char = st_text.ToCharArray()

        For i = 0 To arr.Length - 1

            If Char.IsDigit(arr(i)) Then

                count = count + 1


            End If

        Next


        Label2.Text = "Number of digits : " & count


    End Sub


    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click

        TextBox1.Text = ""

        Label2.Text = ""

        TextBox1.Focus()

    End Sub

End Class


Count Digits in C++

Count Digits in C++

 In this tutorial, I will show you how to write a program that will ask the user to give a series of numbers and then the program will count the digits in a given number using the 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 at 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/* Count_Digits.cpp
   Jake Rodriguez Pomperada, MAED-IT, MIT
   www.jakerpomperada.com
   jakerpomperada@gmail.com
   Bacolod City, Negros Occidental, Philippines
*/

#include <iostream>

long long int a=0;


int main()
{

    int x=0;

    std::cout <<"\n\n";
    std::cout <<"\tCount Digits in C++";
    std::cout <<"\n\n";
    std::cout <<"\tGive a Number : ";
    std::cin >> a;

    std::cout <<"\n\n";

    for (x = 1; a >= 10; x++)
    {
        a = a / 10;
    }

    std::cout <<"\tThe Variable a contains " 
          <<  x << " digits.\n";
    std::cout <<"\n\n";
    std::cout <<"\tEnd of Program";
    std::cout <<"\n\n";
}

Mga dahilan kung bakit nananatili ang mga empleyado sa kanilang trabaho

Capitalize Vowels in a String in Java

Thursday, November 12, 2020

Capitalize Vowels in a String in Java

 In this tutorial, I will show you how to write a program that will ask the user to give a string or a 

sentence and then the program will capitalize all the vowels in the given string or sentence using Java

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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button,

SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

import java.util.Scanner;


/**

 * @author Jake Rodriguez Pomperada, MAED-IT, MIT

 * jakerpomperada@gmail.com

 * www.jakerpomperada.com

 * Bacolod City, Negros Occidental

 * November 12, 2020

 */


public class Capitalize_Vowels {


    static final char[] VOWELS = {'a', 'e', 'i', 'o', 'u'};

    

public static void main(String[] args) {

// TODO Auto-generated method stub

      String text;

    

       Scanner keyboard = new Scanner(System.in);

               

      System.out.println("\n");

      System.out.print("\t\tCapitalize Vowels in a String in Java");

      System.out.println("\n");

             

      System.out.print("\tGive a String :  ");

      text = keyboard.nextLine();

      

      char[] result = text.toCharArray();

        for (int i = 0; i < result.length; i++)

        {

            if (isVowel(result[i])) 

            {

                if (isLowerCase(result[i]))

                {

                    result[i] = Character.toUpperCase(result[i]);

                }

            }

        }

        

          System.out.print("\n");

          System.out.println("\tOriginal String   : " + text);

          System.out.print("\tThe result        : " ); 

          System.out.print(result);

      System.out.print("\n\n");

  System.out.println("\tEnd of Program");

  System.out.println("\n\n");

      keyboard.close();

    }


    static boolean isVowel(char ch)

    {

        for (char vowel : VOWELS)

        {

            if (vowel == ch)

            {

                return true;

            }

        }

        return false;

        

        

        

    }

    

    

    

    static boolean isLowerCase(char ch)

    {

        return ch >= 'a' && ch <= 'z';

       

}


}



Count Digits in Java

Count in Digits in Java

 In this tutorial, I will show you how to write a program that will ask the user to give a series of

numbers and then the program will count the digits in a given number using Java 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 at 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.



Program Listing

import java.util.Scanner;

/**
 * @author Jake Rodriguez Pomperada, MAED-IT, MIT
 * jakerpomperada@gmail.com
 * www.jakerpomperada.com
 * Bacolod City, Negros Occidental
 * November 12, 2020
 */

public class Count_Digits {

public static void main(String[] args) {
// TODO Auto-generated method stub
long a=0;
int x=0;
        
       Scanner keyboard = new Scanner(System.in);
               
      System.out.println("\n");
      System.out.print("\t\tCount in Digits in Java");
      System.out.println("\n");
             
      System.out.print("\tGive a Number :  ");
      a = keyboard.nextInt();
      
      for (x = 1; a >= 10; x++)
      {
          a = a / 10;
      }

     
      System.out.print("\n");
      System.out.printf("\tThe given number contains " + x + " digits.\n");
      System.out.print("\n\n");
  System.out.println("\tEnd of Program");
  System.out.println("\n\n");
     keyboard.close();
}

}



5 Tips To Protect Our Self Online (Tagalog)

Wednesday, November 11, 2020

Count Digits in C

Count Digits in C

 A program that I wrote using a C programming language to ask the user to give a series of numbers and then the program will count the number of digits in the given number.

 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/* Count_Digits.c
   Jake Rodriguez Pomperada, MAED-IT, MIT
   www.jakerpomperada.com
   jakerpomperada@gmail.com
   Bacolod City, Negros Occidental
*/

#include <stdio.h>

long long int a=0;


int main()
{

    int x=0;

    printf("\n\n");
    printf("\tCount Digits in C");
    printf("\n\n");
    printf("\tGive a Number : ");
    scanf("%d", &a);

    printf("\n\n");

    for (x = 1; a >= 10; x++)
    {
        a = a / 10;
    }

    printf("\tThe Variable a contains %d digits.\n", x);
    printf("\n\n");
    printf("\tEnd of Program");
    printf("\n\n");

}

Find the Second Biggest Number in C

Finding Second Highest Number in C

 In this tutorial, I will show you how to write a program that will ask the user to give three integer numbers, and then the program will check and determine which of the three numbers is the second to the highest 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/* second_number.c
   Jake Rodriguez Pomperada, MAED-IT, MIT
   November 11, 2020
   www.jakerpomperada.com
   jakerpomperada@gmail.com */

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

int main()
  {
     int a,b,c;

     printf("\n\n");
     printf("\tFinding Second Highest Number in C");
     printf("\n\n\n");
     printf("\tGive First  Value : ");
     scanf("%d",&a);
     printf("\tGive Second Value : ");
     scanf("%d",&b);
     printf("\tGive Third Value  : ");
     scanf("%d",&c);
     printf("\n\n");

     if(a>b&&a>c)
     {
        if(b>c)
          printf("\tThe number %d is second greater.",b);
         else
           printf("\tThe number %d is second greater.",c);
      }
     if(b>a&&b>c)
       {
         if(a>c)
           printf("\tThe number %d is second greater.",a);
      else
       printf("\tThe number %d is second greater.",c);
     }
     if(c>a&&c>b)
        {
         if(a>b)
           printf("\tThe number %d is second greater.",a);
         else
           printf("\tThe number %d is second greater.",b);
     }
    printf("\n\n");
    printf("\tEnd of Program");
    printf("\n\n");
 }



4 Tips Ma Rearch natin ang ating Goal sa Buhay

Tuesday, November 10, 2020

Print Month Calendar in C++

CALENDAR GENERATOR IN C++

 I wrote this program  to display the calendar month  from the year 2000 up to the year you want using C++ programming language.  I use Codeblock as my integrated development environment in writing this 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

calendar.cpp


#include<iostream>

#include<conio.h>


using namespace std;


/* This class is used for generating calendar */

class calendar

{

 int i,j,days,mm,mon,k,z,p,yy,r;

 int calen[5][7];


 public:

  void calen_call(void);

  void display(void);

};


int  main()

{

 system("cls");

 calendar c;

 c.calen_call();

 c.display();

 getch();

}


void calendar::calen_call(void)

{


 int month[12]={31,28,31,30,31,30,31,31,30,31,30,31};



 cout <<"\n\n";

 cout <<"\t\tCALENDAR GENERATOR IN C++";

 cout <<"\n\n";

 cout<<"\n\t\t\tCALENDAR FROM YEAR 2000...Onwards\n\n\n";


repeat:


 cout<<"\tGive a Year  [2000...Onwards] : ";

 cin>>yy;


 if(yy<=1999)

 {

    cout<<"\n\nWrong Selection. Try Again.";


    goto repeat;

 }


 if(yy%4==0)

 {

    if(yy%100==0)

    {

     if(yy%400==0)

     month[1]=29;

     else

     month[1]=28;

    }

    else

    month[1]=29;

 }


 again:

 cout<<"\tSelect Month [1-12] : ";

 cin>>mon;


 if(mon>12||mon<1)

 {

    cout<<"\tWrong Selection. Try Again. ";


    goto again;

 }


 cout<<"\n\n\t\t\t\tYEAR "<<yy<<"\n\n";


 switch(mon)

 {

    case 1:cout<<"\n\n\t\t\t\tJANUARY\n\n";break;

    case 2:cout<<"\n\n\t\t\t\tFEBRUARY\n\n";break;

    case 3:cout<<"\n\n\t\t\t\tMARCH\n\n";break;

    case 4:cout<<"\n\n\t\t\t\tAPRIL\n\n";break;

    case 10:cout<<"\n\n\t\t\t\tOCTOBER\n\n";break;

    case 11:cout<<"\n\n\t\t\t\tNOVEMBER\n\n";break;

    case 5:cout<<"\n\n\t\t\t\tMAY\n\n";break;

    case 6:cout<<"\n\n\t\t\t\tJUNE\n\n";break;

    case 7:cout<<"\n\n\t\t\t\tJULY\n\n";break;

    case 8:cout<<"\n\n\t\t\t\tAUGUST\n\n";break;

    case 9:cout<<"\n\n\t\t\t\tSEPTEMBER\n\n";break;

    case 12:cout<<"\n\n\t\t\t\tDECEMBER\n\n";break;

    default:cout<<"\n\nWRONG ENTRY";exit(0);

 }

 /* Start day of year 1999 i.e. Friday 1st January 1999 */

 p=5;

 /* Determination of start day of entered year [Calculating from 1999] */

 for(r=1999;r<yy;r++)

 {

    if(r%4==0)

    {

     if(r%100==0)

     {

        if(r%400==0)

        p=p+2;

        else

        p++;

     }

     else

     p=p+2;

    }

    else

    p++;

    /* Resseting of start variable if last day is reached */

    if(p==7)

    p=0;

    if(p==8)

    p=1;

 }

 /* Start of Month iteration for entered year */

 for(mm=0;mm<12;mm++)

 {

    /* Number of days a month has. Takes from the array defined above */

    days=month[mm];

    /* Start of days from */

    k=0;

    /* Setting all values in first row to 0 */

    for(z=0;z<7;z++)

    calen[0][z]=0;

    /* Looping through the rows and columns of calen */

    for(i=0;i<5;i++,p=0)

    for(j=p;j<7&&k<days;j++)

    {

     /* Adding of days to the matrix */

     calen[i][j]=k+1;

     k++;

     /* Checking for finish of days */

     if(k==days&&i==4&&j<7)

     {

        /* Setting of remaining values to 0 */

        for(p=j+1;p<7;p++)

        calen[i][p]=0;

     }

     /* Putting values on first row if matrix is finished */

     if(k<days&&i==4&&j==6)

     {

        for(p=0;p<7&&k<days;p++,k++)

        calen[0][p]=k+1;

        j=p-1;

     }

     /* Setting of j to -1 when days are finished */

     if(k==days&&i==4&&j==6)

     {

        j=-1;

     }

     /* Special Check if days finish in 4th row e.g. 2009 february */

     if(k==days&&i==3&&j==6)

     {

        /* Setting of final row to 0 */

        for(p=0;p<7;p++)

        calen[4][p]=0;

     }

    }

    /* Resetting of start day for next month */

    p=j;

    /* Returning of loop if desired month is found */

    if(mm+1==mon)

    return;

 }

}

/* Displays the values of Calen array */

void calendar::display()

{

 /* Printing of day names */

 cout<<"\n\tSUN\tMON\tTUE\tWED\tTHU\tFRI\tSAT\n\n";

 /* Start of loop of rows */

 for(i=0;i<5;i++)

 {

    /* Start of loop of columns */

    for(j=0;j<7;j++)

    cout<<"\t"<<calen[i][j];

    cout<<"\n\n";

 }


 cout << "\n\n";

 cout <<"\t\t\tEND OF PROGRAM";

 cout << "\n\n";

 system("pause");

}



Word Count in a Sentence in C

Word Count in a Sentence in C

 In this tutorial, I will show you how to write a program that will ask the user to give a sentence, and the program will count the number of words in the given 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

#include <stdio.h>

#include <stdlib.h>

#include <string.h>


int main()

{

char buffer[80] = {0};

int count = 0;


printf("\n\n");

printf("\tWord Count in a Sentence in C");

    printf("\n\n");

printf("\tEnter a sentence please: ");

fgets(buffer, sizeof(buffer), stdin);

char *nl = strchr(buffer, '\n');

if (nl != NULL)

nl = '\0'; // remove trailing '\n'

if (buffer[0] == '\n') // user hit only return

{

printf("Number of words: %d", count);

return 1;

}

// assume that the words are separated by space

char *token = strtok(buffer, " ");


while (token != NULL)

{

++count;

token = strtok(NULL, " ");

}

    printf("\n\n");

printf("\tNumber of words: %d.", count);

printf("\n\n");

printf("\tEnd of Program");

printf("\n\n");

}


Monday, November 9, 2020

Highest Number From Given Five Numbers in C++

Highest Number From Given Five Numbers in C++

 I wrote this program to ask the user to give five numbers and then the program will determine which of the five given number is the highest in terms of numerical value 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 I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing


#include <iostream>

#include <limits>


int main(int argc, char **argv)

{

    int highest = std::numeric_limits<int>::min(), input;


    std::cout <<"\n\n";

    std::cout <<"\tHighest Number From Given Five Numbers in C++";

    std::cout <<"\n\n";

    for (auto i = 0; i < 5; ++i)

    {

        std::cout << "\tEnter Item No. " << i+1 << " : ";

        std::cin >> input;

        if (input > highest)

            highest = input;

    }

    std::cout <<"\n\n";

    std::cout << "\tThe highest number is: " << highest << "\n";

    std::cout <<"\n";

    std::cout <<"\tEnd of Program";

    std::cout <<"\n";

}


Age Checker Using If Else in Java