Friday, January 14, 2022

Feet To Inches In PHP

 A simple program to ask the user to give length in fee and convert it into inches 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 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.





Progam Listing

<?php 

    $value_in_inches = "";


    if (isset($_POST["txtValueInFeet"])) {

        $value_in_inches = (int)$_POST["txtValueInFeet"] * 12;


        $value_in_inches = "<strong>". $_POST["txtValueInFeet"] ."</strong>".

                            " feet is equal to <strong>". $value_in_inches ."</strong> inches";

    }

?>

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Feet To Inches in PHP</title>

    <style>

        *,html {

            box-sizing: border-box;

            padding: 0;

            margin: 0;

        }


        body {

            display: flex;

            justify-content: center;

            align-items: center;

            min-height: 100vh;

            background: #fefefe;

            font-family: sans-serif;

            background-color: #19BC9D;

        }


        .container {

            background: #fff;

            border: none;

            text-align: center;

            color: #fff;

            width: 470px;

        }


        .title {

            background-color: #14A083;

            padding: 20px;

            border: none;

        }


        .wrapper {

            padding: 30px 20px;

            font-size: 20px;

            background-color: #fff;

            border: none;

            color: #14A083;

        }


        form {

            margin-bottom: 20px;

        }


        h1 {

            margin: 0 0 5px;

            line-height: 1;

        }


        p {

            margin: 15px 0 0;

        }

        

        input {

            display: block;

            width: 100%;

            margin-bottom: 20px;

            padding: 10px;

            font-size: 15px;

            text-align: center;

        }


        .output {

            margin: 10px 0;

        }


        button {

            background-color: #14A083;

            color: #fff;

            border: none;

            border-radius: 2px;

            text-align: center;

            text-transform: uppercase;

            text-decoration: none;

            cursor: pointer;

            font-size: 15px;

            padding: 15px 10px;

            width: 100%;

            display: block;

            margin: 20px 0 0;

        }

    </style>

</head>

<body>

<div class="container">

        <div class="title">

            <h1>Feet To Inches In PHP</h1>

            <p>Created By:</p>

            <h2>&#187; Jake R. Pomperada, MAED-IT, MIT &#171;</h2>

        </div>

        <div class="wrapper">

            <form action="" method="post">

                <label>Enter a number here</label>

                <input type="number" name="txtValueInFeet" required>


                <button type="submit" name="btnSubmit">Convert</button>

            </form>

            <?php echo $value_in_inches;?>

        </div>

    </div>

</body>

</html>

Wednesday, January 12, 2022

Present Date in C

Present Date in C

 A simple program that I wrote to display the present date 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.






Program Listing

#include <stdio.h> #include <time.h> /* Jake Rodriguez Pomperada, MAED-IT, MIT www.jakerpomperada.com and www.jakerpomperada.blogspot.com jakerpomperada@gmail.com */ const char *month_names[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; int main() { time_t now = time(NULL); struct tm *day = localtime(&now); printf("\n\n"); printf("\tPresent Date in C"); printf("\n\n"); printf("\tDate : %s\t%d, %d", month_names[day->tm_mon], day->tm_mday,day->tm_year+1900); printf("\n\n"); printf("\tEnd of Program"); printf("\n\n"); return 0; }

Tuesday, January 11, 2022

Current Date in C++

Current Date in C++

 A program that will display the current date 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.






Program Listing

#include <iostream> #include <ctime> using std::string; int main() { time_t t = time(NULL); tm* timePtr = localtime(&t); std::cout <<"\n"; std::cout << "\tCurrent Date in C++\n"; std::cout <<"\n"; std::cout << "The Current Date : " <<(timePtr->tm_mday)<<"/"<< (timePtr->tm_mon)+1 <<"/"<< (timePtr->tm_year)+1900<<std::endl; return 0; }

Monday, January 10, 2022

Two Decimal Places in C

Two Decimal Places in C

 A simple program that demonstrates how to declare two decimal places 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.





Program Listing


#include <stdio.h>


  int main() {

 

        float temperature = 123.3567;


        printf("\n");

        printf("\tTwo Decimal Places in C");

        printf("\n\n");

        printf("\tThe temperature is %.2f degree's Celsius.",temperature);

        printf("\n\n");

        printf("\tEnd of Program");

        printf("\n");

        return 0;

  }


Sunday, January 9, 2022

Feet To Inches in C++

Feet To Inches in C++

  A simple program to ask the user to give a value in feet and then the program will convert the given feet into inches equivalent 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.





Program Listing

#include <iostream>

#include <iomanip>


using std::string;


  int main() {

 

        float feet=0.00, inches=0.00;

        

        std::cout <<"\n";

        std::cout <<"\tFeet To Inches in C++";

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

        std::cout <<"\tGive the number of feet : ";

        std::cin >> feet;

      std::cout <<"\n";

       

        inches = feet * 12.0;

        

        std::cout << std::fixed;

        std::cout << std::setprecision(2);

        std::cout <<"\t" << feet << " feet is equal to " << inches 

<< " inches." <<"\n";

        std::cout <<"\n";

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

        std::cout <<"\n";

        return 0;

  }


Feet To Inches in C

Feet To Inches in C

 A simple program to ask the user to give a value in feet and then the program will convert the given feet into inches equivalent 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.





Program Listing


#include <stdio.h>


  int main() {

 

        float feet=0.00, inches=0.00;


        printf("\n");

        printf("\tFeet To Inches in C");

        printf("\n\n");

        printf("\tGive the number of feet : ");

        scanf("%f", &feet);

  printf("\n");

       

        inches = feet * 12.0;

        

        printf("\t%.2f feet is equal to %.2f inches\n", feet, inches);

        printf("\n");

        printf("\tEnd of Program");

        printf("\n");

        return 0;

  }


Saturday, January 8, 2022

Multiplication Table in Java

Multiplication Table in Java

 Machine Problem

Write a program to generate a multiplication table 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.





Program Listing

public class Multiplication_Table {
public static void main(String[] args) {

        int Table_Size = 10;

      Display(Table_Size);
    }
   
    public static void Display(int Table_Size) {
   
    System.out.println();
        System.out.print("\t\t MULTIPLICATION TABLE IN JAVA ");
        System.out.print("\n\n");
        System.out.format("      ");

        for(int i = 0; i<=Table_Size ;i++ ) {

            System.out.format("%4d",i);

        }

        System.out.println();

       System.out.println(" -------------------------------------------------");

        
        for(int i = 0 ;i<=Table_Size ;i++) {

             System.out.format("%4d |",i);

            for(int j=0;j<=Table_Size ;j++) {

                System.out.format("%4d",i*j);

            }

            System.out.println();

        }
   System.out.println();
   System.out.println("\t\t END OF PROGRAM");     
   System.out.println("\n\n");

}
}

Present Month in Java

Present Month in Java

 Machine Problem

Write a program that will display the present month 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.






Solution


import java.time.*;


/**

 * @version January 5, 2021

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

 */

public class Calendar

{

   public static void main(String[] args)

   {

      LocalDate date = LocalDate.now();

      int month = date.getMonthValue();

      int today = date.getDayOfMonth();


      date = date.minusDays(today - 1); // set to start of month

      DayOfWeek weekday = date.getDayOfWeek();

      int value = weekday.getValue(); // 1 = Monday, . . . , 7 = Sunday


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

  System.out.println("\tPresent Month in Java");

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

  System.out.print("Month of January 2022");

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

      System.out.println("Mon Tue Wed Thu Fri Sat Sun");

      for (int i = 1; i < value; i++)

         System.out.print("    ");

      while (date.getMonthValue() == month)

      {

         System.out.printf("%3d", date.getDayOfMonth());

         if (date.getDayOfMonth() == today)

            System.out.print("*");

         else

            System.out.print(" ");

         date = date.plusDays(1);

         if (date.getDayOfWeek().getValue() == 1) System.out.println();

      }

      if (date.getDayOfWeek().getValue() != 1) System.out.println();

   }

}


Input Your Name and Age in Java

Input Your Name and Age in Java

 Machine Problem


Write a program that shows basic input and output of user's name and age 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.




Program Listing

import java.util.*; public class Input_Name { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("\n"); System.out.println("\tInput Your Name and Age in Java"); System.out.println("\n"); // Input your name System.out.print("\tWhat is your name? "); String name = input.nextLine(); System.out.println("\n"); // Input your age System.out.print("\tHow old are you? "); int age = input.nextInt(); // display output on console System.out.println("\n"); System.out.println("\tHello, " + name + ". Next year, you'll be " + (age + 1) + "."); System.out.println(); System.out.println("\tEnd of Program"); System.out.println(); input.close(); } }

Thursday, January 6, 2022

Factorial a Number Using Recursion in C++

Factorial a Number Using Recursion in C++

 A program that will demonstrate how to use recursion to solve the factorial value of the given number 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.





Program Listing

#include <iostream> int factorial(int n); int main() { int num_val=0; std::cout << "\n\n"; std::cout << "\tFactorial a Number Using Recursion in C++"; std::cout << "\n\n"; std::cout << "\tGive a Number : "; std::cin >> num_val; std::cout << "\n\n"; std::cout << "\tFactorial of " << num_val << " = " << factorial(num_val); std::cout << "\n\n"; std::cout << "\tEnd of Program"; std::cout << "\n\n"; return 0; } int factorial(int n) { if(n > 1) return n * factorial(n - 1); else return 1; }

Reverse a String in C#

Reverse a String in C#

A program that will ask the user to give a string and then the program will display the original string and reverse string output 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.





Program Listing

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace Reverse_String

{


    

static class StringHelper

{

public static string ReverseString(string str)

{

char[] array = str.ToCharArray() ;

Array.Reverse(array) ;

return new string(array) ;

}

}



    class Program

    {


        

        static void Main(string[] args)

        {



            Console.Write("\n\n");

            Console.Write("Reverse a String in C#");

            Console.Write("\n\n");

            Console.Write("Give a String : ");

            string originalString = Console.ReadLine();


            Console.Write("\n\n");

            Console.Write("Original String     :  " + originalString);

            Console.Write("\n\n");

            Console.WriteLine("Reverse String  : " + StringHelper.ReverseString(originalString));

            Console.ReadLine();

        }

    }

}


Tuesday, January 4, 2022

Reverse An Array in C

Reverse An Array in C

 A  simple program to ask the user to give a series of numbers and then the program will reverse the arrangement of the given numbers using arrays in 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.





Program Listing

#include <stdio.h> #define MAX 100 int main() { int arr[MAX],num=0,i=0,temp=0; printf("\n"); printf("\tReverse An Array in C"); printf("\n\n"); printf("\tEnter size of Array : "); scanf("%d",&num); printf("\n\n"); printf("\tEnter the elements :"); printf("\n\n"); printf("\t"); for(i=0;i<num;i++) { scanf("%d",&arr[i]); } for(i=0;i<num/2;i++) { temp=arr[i]; arr[i]=arr[num-i-1]; arr[num-i-1]=temp; } printf("\n\n"); printf("\tArray after reversing : \n"); printf("\t"); for(i=0;i<num;i++) { printf("%d ",arr[i]);; } printf("\n"); printf("\tEnd of Program"); printf("\n"); }

Monday, January 3, 2022

Bitwise Operators in C

Bitwise Operators in C

 A simple program that demonstrate how to use and declare bitwise operators in 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.





Program Listing

/* bitwise.c

   Author   : Jake Rodriguez Pomperada,BSCS,MAED-IT

   Date     : November 19, 2018  Monday 2:38 PM

   Location : Bacolod City, Negros Occidental

   Website  : http://www.jakerpomperada.com

   Emails   : jakerpomperada@jakerpomperada.com

              jakerpomperada@gmail.com

              jakerpomperada@yahoo.com

              jakerpomperada@aol.com

*/


#include <stdio.h>


int main() 

 int x=0, y=0; 

 printf("\n\n");

 printf("\tBitwise Operators in C");

 printf("\n\n");

 printf("\tGive two integers: ");

 scanf("%d%d",&x,&y);

 printf("\n\n");

 printf("\t%d & %d =  %d\n",x,y,(x & y)); 

 printf("\t%d | %d = %d\n",x,y,(x | y)); 

 printf("\t%d ^ %d = %d\n",x,y,(x ^ y));

 printf("\t~%d = %d\n",x,~x); 

 printf("\t%d << %d = %d\n",x,2,(x << 2));

 printf("\t%d >> %d = %d\n",x,2,(x >> 2));

 printf("\n\n");

 printf("\tEnd of Program");

 printf("\n\n");

}


Sunday, January 2, 2022

Factorial a Number Using Recursion in C

Factorial a Number Using Recursion in C

 A factorial program that I wrote using C language that will ask the user to give a number and then it will compute the factorial value of the given number using recursion method.

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.





Program Listing

#include <stdio.h> int factorial_function(int num); int main() { int number_given=0; printf("\n"); printf("\tFactorial a Number Using Recursion in C"); printf("\n\n"); printf("\tGive a Number : "); scanf("%d",&number_given); int result = factorial_function(number_given); printf("\n"); printf("\tThe Factorial of %d = %d", number_given, result); printf("\n\n"); printf("\tEnd of Program"); printf("\n"); return 0; } int factorial_function(int num) { if(num ==0) return 1; else return (num*factorial_function(num-1)); }

Saturday, January 1, 2022

Print 1 To 15 in C++

Print 1 To 15 in C++

 A simple C++ program to display 1 to 15 series of numbers on the screen.

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.





Program Listing


#include <iostream>

#include <iomanip>


int main()

{

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

    std::cout << "\tPrint 1 To 15 in C++";

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

    for (int a=1; a<=15; a++) {

        std::cout << std::setw(4) << a

        <<std::setw(4);

    }

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

}