Wednesday, May 5, 2021

Count Vowels, Consonants, and Digits in C

 In this tutorial our program will count the number of vowels, consonants, and digits using C programming language. I hope you will find my  work useful.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com





Program Listing

/* vowels_consonants.c

   Author : Jake Rodriguez Pomperada, MAED-IT, MIT

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

   jakerpomperada@gmail.com

   Bacolod City, Negros Occidental Philippines

*/


#include <stdio.h>

#include <assert.h>

#include <stdbool.h>

#include <ctype.h>

#include <string.h>


typedef struct

{

int vowel_count;

int consonant_count;

int digit_count;

}Stat;


bool is_vowel(char ch)

{

const char vowels[] = "aeiou";


return strchr(vowels, tolower(ch)) != NULL;

}


bool is_consonant(char ch)

{

const char consonants[] = "bcdfghjklmnpqrstuvwxyz";


return strchr(consonants, tolower(ch)) != NULL;

}


void do_stats(const char* txt, size_t size, Stat *stat)

{

assert(txt != NULL && size > 1);

assert(stat != NULL);


const char *cp = txt;


while (size--)

{

if (is_vowel(*cp))

stat->vowel_count++;

else if (is_consonant(*cp))

stat->consonant_count++;

else if (isdigit(*cp))

stat->digit_count++;

cp++;

}

}


void print_stats(const Stat* stat)

{

assert(stat != NULL);


printf("\tStatistics:\n");

printf("\t===========\n");

printf("\t  Vowels    : %d\n", stat->vowel_count-1);

printf("\t  Consonants: %d\n", stat->consonant_count);

printf("\t  Digits    : %d\n", stat->digit_count);

}


int main()

{

Stat stat = {0,0,0};

printf("\n\n");

printf("\tCount Vowels,Consonants, and Digits in C");

printf("\n\n");

const char input[] = "Jake Pomperada, 42 years old and 173 cm tall.";

printf("\t%s", input);

printf("\n\n");

do_stats(input, sizeof(input), &stat);

print_stats(&stat);

printf("\n\n");

system("pause");

}



Sunday, May 2, 2021

Addition of Three Numbers in Java

Addition of Three Numbers in Java

 

Write a program in Java that will ask the user to input three numbers and then the program will find the total sum of three numbers given by our user.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com






Program Listing


addition_of_three_numbers.java

/**

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

 * www.jakerpomperada.com    www.jakerpompomperada.blogspot.com

 * jakerpomperada@gmail.com

 * Bacolod City, Negros Occidental Philippines

 *

 */

import java.util.Scanner;


public class addition_of_three_numbers {


/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner scan = new Scanner(System.in);

  System.out.println();

  System.out.println("===== Addition of Three Numbers in Java =====");

  System.out.println();

  System.out.print("Enter First Number : ");

  int a = scan.nextInt();

  System.out.print("Enter Second Number : ");

  int b = scan.nextInt();

  System.out.print("Enter Third Number : ");

  int c = scan.nextInt();

  int sum = (a+b+c);

  System.out.println();

  System.out.print("The sum of "+ a  + " , " + b + " and " 

  + c + " is " + sum + ".");

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

  System.out.println("=====   END OF PROGRAM =====");

  System.out.println();

}


}


Simple Distance Converter in PHP

Multi Line Message Box in VB NET

Simple Distance Converter in PHP

 In this tutorial I will share to you guys how to create a PHP program to ask the user to give a distance in centimeter, and convert it into meters, and kilometres. I hope you will find my work useful.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com






Program Listing

style.css

*,

html {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


body {

    font-family: "Calibri", sans-serif;

    background: #e2e1e0;

    color: #111;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 100vh;

}


main {

    -webkit-transform: skewY(8deg);

    transform: skewY(8deg);

    background: #fff;

    border: 8px solid #2196f3;

    border-radius: 20px 40px 20px 40px;

}

.container::before {

    position: absolute;

}

.container {

    -webkit-transform: skewY(-8deg);

    transform: skewY(-8deg);

    padding: 50px 40px;

    min-width: 530px;

    text-align: left;

}


h1 {

    margin: 0;

    line-height: 1.2;

    text-align: center;

}


h2 {

    margin: 0 0 30px;

    font-size: 22px;

    text-align: center;

}


.txtbox {

    display: inline-block;

    background: #eee;

    width: 100%;

    margin: 0 0 8px 0;

    padding: 15px;

    border: none;

    font-size: 15px;

}


.txtbox:focus {

    background: #f1f1f1;

    outline: none;

}


.block {

    display: block;

    width: 100%;

    padding: 10px 0;

    margin-bottom: 10px;

}


.block .radioblock {

    width: 100px;

    display: inline-block;

}


.block label {

    cursor: pointer;

}


button {

    display: block;

    background: #2196f3;

    color: #fff;

    padding: 10px;

    font-size: 15px;

    width: 100%;

    opacity: 0.9;

    outline: none;

    text-transform: uppercase;

    border: none;

    text-decoration: none;

    text-align: center;

    border: none;

    margin-bottom: 10px;

}


button:hover {

    opacity: 1;

}


.result {

    padding: 10px;

    font-size: 20px;

    background: #eee;

    text-align: center;

    font-weight: bold;

}


index.php

<?php 
    if(isset($_POST['txtNumber'])) {
        $num = $_POST['txtNumber'];
        $rad = $_POST['txtRadio'];

        switch ($rad) {
            case "Meter":
                $res = $num / 100;
                $res .= " m";
                break;
            case "Kilometer":
                $res = $num / 100000;
                $res .= " km";
                break;
        }
    }
?>
<!DOCTYPE html>
<html lang="en">

<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Simple Distance Converter in PHP</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <main>
        <div class="container">
            <h1>Simple Distance Converter in PHP</h1>
            <h2>&#187; Jake R. Pomperada, MAED-IT, MIT &#171;</h2>

            <div class="container-wrapper">
                <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST" class="frmSelect">
                    <label for="txtNumber" class="label">Distance in Centimeter:</label>
                    <input type="number" min="1" class="txtbox" name="txtNumber" id="txtNumber"
                        value="<?php if(isset($num)){echo $num;} ?>" required>

                    <div class="block">
                        <div class="radioblock">
                            <input type="radio" name="txtRadio" id="txtRadio1" value="Meter" required>
                            <label for="txtRadio1">Meter</label>
                        </div>
                        <div class="radioblock">
                            <input type="radio" name="txtRadio" id="txtRadio2" value="Kilometer" required>
                            <label for="txtRadio2">Kilometer</label>
                        </div>
                    </div>

                    <button type="submit">Convert</button>
                </form>
                <?php if(isset($res)) echo '<div class="result">'.$res.'</div>'; ?>
            </div>
        </div>
    </main>
</body>

</html>



Multi Line Message Box in Visual Basic NET

 I created this video to demonstrate how to create multi line message box using Microsoft Visual Basic NET.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com






Program Listing

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

        MsgBox("This program was created by" & vbCrLf & vbCrLf & _

               "Mr. Jake Rodriguez Pomperada, MAED-IT, MIT" & vbCrLf & vbCrLf & _

               "www.jakerpomperada.com and www.jakerpomperada.blogspot.com" & vbCrLf & _

               "jakerpomperada@gmail.com" & vbCrLf & "Bacolod City, Negros Occidental Philippines.", vbInformation, "About this Program")

        TxtUsername.Focus()

    End Sub

Thursday, April 29, 2021

String Length in Java

String Length in Java

 In this tutorial I will show you how the program will ask the user to give a string and then the program will count the number of characters in the given string using Java programming language. I am using eclipse as my IDE and OpenJDK.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com








Program Listing

/**
 * @author Jake Rodriguez Pomperada,MAED-IT, MIT
 * www.jakerpomperada.com    www.jakerpompomperada.blogspot.com
 * jakerpomperada@gmail.com
 * Bacolod City, Negros Occidental Philippines
 *
 */
import java.util.Scanner;

class String_Length_Demo
{
public static void main(String x[])
{
Scanner input=new Scanner(System.in);
System.out.print("\n\n");
System.out.print("\tString Length in Java");
System.out.print("\n\n");
System.out.print("\tGive a String : ");  
String str=input.nextLine(); 
int len=str.length();
System.out.print("\n\n");
System.out.println("\tGive string contains "+len+" characters");
System.out.print("\n\n");
System.out.print("\tEnd of Program");
}
 
}


Wednesday, April 28, 2021

Product of Two Numbers Using Pointers in C++

Product of Two Numbers in Pointers Using C++

 A simple program to ask the user to give two numbers that will compute the product of two numbers using pointers 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 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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com







Program Listing


// product.cpp

// Jake Rodriguez Pomperada, MAED-IT, MIT

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

// jakerpomperada@gmail.com


#include <iostream>



int main()

{

    int val1=0,val2=0;      

    int *ptr1,*ptr2;   

    int solve_product = 0;

                 

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

    std::cout << "\tProduct of Two Numbers in Pointers Using C++";

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

    std::cout << "\tGive First Value  : ";

    std:: cin>>val1;   

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

    std::cout << "\tGive Second Value : ";

    std:: cin>>val2;                          


    ptr1=&val1;                                      

    ptr2=&val2;


    // Solving the product here

    solve_product=*ptr1 * *ptr2;                                 


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

    std::cout << "\tThe product of " << val1 << " and " << val2 

    << " is " << solve_product << ".";

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

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

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

    system("pause");

    

}



Sunday, April 25, 2021

String Palindrome in Python

String Palindrome in Python

 In this tutorial, I will show you how to write a string palindrome using Python programming.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com






Program Listing

palindrome.py

# palindrome.py
# Jake Rodriguez Pomperada,MAED-IT,MIT
# www.jakerpomperada.blogspot.com www.jakerpomperada.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines
print("\n\n")
print("\tString Palindrome in Python")
print("\n")
str_value = input("Give a String : ")
print("\n")

if(str_value.lower() == str_value.lower()[:: - 1]):
print("\tThe given string ", str_value.upper(), " is a Palindrome.\n")
else:
print("\tThe given string ", str_value.upper(), " is not a Palindrome.\n")
print("\tEnd of Program")

Arithmetic Operators in C#

Arithmetic Operators in C#

 In this article I would like to share about arithmetic operators in C# programming languages. I hope you will find my work useful.

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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com





Program Listing

using System;


namespace Aritmetic_Operators

{

    class Program

    {

        static void Main(string[] args)

        {


            // Arithmetic Operators in C#


            // Jake Rodriguez Pomperada,MAED-IT, MIT


            // www.jakerpomperada.com  


            // www.jakerpomperada.blogspot.com


            // jakerpomperada@gmail.com


            // Bacolod City, Negros Occidental Philippines

            int a = 40;

            int b = 6;


            int sum = a + b;

            int sub = a - b;

            int mul = a * b;

            float div = (float)a / (float)b;

            int rem = a % b;

            

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

            Console.WriteLine("\tArithmetic Operators in C#");

            Console.WriteLine("\n");

            Console.WriteLine("\tThe Addition of {0} and {1} is = {2}", a, b, sum);

            Console.WriteLine("\tThe Subtraction of {0} and {1} is = {2}", a, b, sub);

            Console.WriteLine("\tThe Multiplication of {0} and {1} is = {2}", a, b, mul);

            Console.WriteLine("\tThe Division of {0} and {1} is = {2}", a, b, div);

            Console.WriteLine("\tThe Remainder of {0} and {1} is = {2}", a, b, rem);

            Console.WriteLine("\n");

            Console.WriteLine("\tEnd of Program");

            Console.ReadLine();

        }

    }

}



Saturday, April 24, 2021

Area of the Circle in C#

 I wrote this simple program to ask the user to give radius of the circle and then program will compute the area of the circle 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 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 jakerpomperada@gmail.com and jakerpomperada@yahoo.com








Program Listing


Program.cs

using System;


namespace Area_of_Circle

{

    class Program

    {

        // Area of the circle in C#

        // Jake Rodriguez Pomperada,MAED-IT, MIT

        // www.jakerpomperada.com  

        // www.jakerpomperada.blogspot.com

        // jakerpomperada@gmail.com

        // Bacolod City, Negros Occidental Philippines

        static void Main(string[] args)

        {

            double radius, area;

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

            Console.WriteLine("\tArea of the Circle in C#");

            Console.WriteLine("\n");

            Console.Write("\tEnter Radius: ");

            radius = Convert.ToDouble(Console.ReadLine());

            area = Math.PI * radius * radius;

            Console.WriteLine("\n");

            Console.WriteLine("\tArea of circle: {0:0.##} " , area);

            Console.WriteLine("\n");

            Console.WriteLine("\tEnd of Program");

            Console.ReadKey();

        }

    }

}