Wednesday, November 2, 2022

Check Vovel in C++

  A simple program to ask the user to give a character and then the program will if the given character is a vowel or not 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 the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.






Program Listing


#include <iostream>



using namespace std;


int main()

{

 

    char ch, display;

 

    cout <<"\n";

    cout <<"\tCheck Vowel in C++\n\n";

    cout <<"\tGive Character :  ";

    cin >> ch;


   display = toupper(ch);

    cout <<"\n\n";

    switch(toupper(ch))

    {

        

        case 'A':

        case 'E':

        case 'I':

        case 'O':

        case 'U':

            cout <<"\t " << display << " is a vowel.\n\n";

            break;

        default:

           cout <<"\t " << display << " is not a vowel.\n\n";

    }

    cout <<"\n";

    cout <<"\tEnd of Program";

    cout <<"\n";

    return 0;

}


Check Vowel in C

Check Vowel in C

 A simple program to ask the user to give a character and then the program will if the given character is a vowel or not 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 the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

#include<stdio.h> int main() { char ch; printf("\n"); printf("\tCheck Vowel in C\n\n"); printf("\tGive Character : "); scanf("%c", &ch); printf("\n\n"); switch(toupper(ch)) { case 'A': case 'E': case 'I': case 'O': case 'U': printf("\t%c is a vowel.\n\n", toupper(ch)); break; default: printf("\t%c is not a vowel.\n\n", toupper(ch)); } printf("\n"); printf("\tEnd of Program"); printf("\n"); return 0; }

Tuesday, November 1, 2022

Jake R. Pomperada IT Consulting Services

Jake R. Pomperada IT Consulting Services

 Jake R. Pomperada IT Consulting Services


                                   JAKE R. POMPERADA, MAED-IT, MIT


I offering my services in Information Technology  consulting, Software Development, Web Design and Development and Computer Programming Services.

You may contact me at the following email address.


jakerpomperada@gmail.com  


jakerpomperada@yahoo.com


My mobile number here in the Philippines

09173084360


Quality Service at a Very Affordable Cost is my business.

Thank you very much for your support.


Student Year Level in Visual Basic NET

Student Year Level in VB.NET

A simple program to check if the given number belongs to freshmen, sophomore, juniors, or seniors 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

Module Module1 Sub Main() Console.WriteLine() Console.Write("Give Your Year Level : ") Dim year_level As Integer = Console.ReadLine() Console.WriteLine() Select Case year_level Case 1 Console.WriteLine("You Belong To Freshmen.") Case 2 Console.WriteLine("You Belong To Sophomore.") Case 3 Console.WriteLine("You Belong To Juniors.") Case 4 Console.WriteLine("You Belong To Seniors.") Case Else Console.WriteLine("Invalid Year Level. Try Again.") End Select Console.ReadKey() End Sub End Module

Select Case Statement in Visual Basic NET

Select Case Statement in VB.NET

 A simple program to demonstrate select case statement in 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

Module Module1


    Sub Main()

        Console.WriteLine()

        Console.Write("Give a Number : ")


        Dim num_val As Integer = Console.ReadLine()


        Console.WriteLine()


        Select Case num_val


            Case 1

                Console.WriteLine("You Choose Number One.")


            Case 2

                Console.WriteLine("You Choose Number Two.")


            Case 3

                Console.WriteLine("You Choose Number Three.")


            Case 4

                Console.WriteLine("You Choose Number Four.")


            Case Else

                Console.WriteLine("Invalid Number Value")


        End Select


        Console.ReadKey()

    End Sub


End Module


Celsius To Fahrenheit in Go

Celsius To Fahrenheit in Go

 Machine Problem

Write a program that will ask the user to give a temperature in Celsius and then the program will convert it into Fahrenheit equivalent.

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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

// temp.go

package main
 
import "fmt"
 
func main(){

    var celsius, fahrenheit float64
     
    fmt.Print("\n")
    fmt.Print("\tCelsius To Fahrenheit Converter")
    fmt.Print("\n\n")
    fmt.Print("\tEnter temperature in Celsius : ")
    fmt.Scanln(&celsius)
    fmt.Print("\n")
    /* celsius to fahrenheit conversion formula */
    fahrenheit = (celsius * 9/5) +32
    fmt.Printf("\t%0.2f",celsius)
    fmt.Print(" Celsius is equal to ")  
    fmt.Printf("%0.2f",fahrenheit)
    fmt.Print(" Fahrenheit.")  
    fmt.Print("\n\n")
    fmt.Print("\tEnd of Program")
    fmt.Print("\n")
}

Monday, October 31, 2022

Area of the Triangle in TypeScript

Area of the Triangle in TypeScript

 Machine Problem

Write a program  that will compute the area of the triangle with the base value 4 and height value of 6 and display the results 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 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.




Program Listing

/* triangle.ts Jake Rodriguez Pomperada, MAED-IT, MIT www.jakerpomperada.com and www.jakerpomperada.blogspot.com jakerpomperada@gmail.com July 18, 2022 10:23 PM Monday Bacolod City, Negros Occidental */ const baseValue = 4 const heightValue = 6; // calculate the area of the triangle const areaValue = (baseValue * heightValue) / 2; console.log(); console.log("Area of the Triangle in TypeScript\n"); console.log("Base Value : " + baseValue + "\n"); console.log("Height Value : " + heightValue + "\n"); console.log("The area of the triangle : " + areaValue + "\n"); console.log("End of Program\n");

How To Create APA Citation in the Internet

Sunday, October 30, 2022

Swap Two Numbers in Ruby

Swap Two Numbers in Ruby

 Machine Problem

Design and create a program that will ask the user to give two integer numbers and then the program will swap the arrangement of two numbers and display the result 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 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.




Program Listing

# swap.rb

# Author   : Jake Rodriguez Pomperada,BSCS,MAED-IT

# Date     : May 15, 2019    Wednesday  3:07 PM

# Address  : Bacolod City, Negros Occidental

# Tools    : Eclipse IDE and Ruby Version 2.6.3

# Location : Bacolod City, Negros Occidental  

# Emails   : jakerpomperada@gmai.com and jakerpomperada@yahoo.com

puts "\n\n"

print "\tSwap Two Numbers in Ruby";

puts "\n\n"

print "\tGive First Value  : ";

a = gets;

print "\tGive Second Value : ";

b = gets;


a = a.to_i;

b = b.to_i;

print "\n\n";

print "\tBefore Swapping";

print "\n\n";

print "\tA = #{a} and B = #{b} ";


# Swapping of values here

   temp = a;

   a = b;

   b = temp;


print "\n\n";

print "\t===== DISPLAY RESULT ====="

print "\n\n";

print "\tAfter Swapping";

print "\n\n";

print "\tA = #{a} and B = #{b} ";

print "\n\n\n";

print "\tEND OF PROGRAM";

print "\n\n";



Basic Math Operations in Ruby

 Machine Problem

Create and Design a program that will ask the user to give two numbers and then the program will compute the sum,difference,product and quotient  of the given numbers and display the results 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 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.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


You can buy my C++ book online at  


https://www.mindshaperspublishing.com/product/beginners-guide-to-c-programming/


You can buy my book in introduction to computer networking at 

https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking


Want to support my channel?

GCash Account

Jake Pomperada


09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.




Program Listing

# math.rb # Author : Jake Rodriguez Pomperada,BSCS,MAED-IT # Date : May 15, 2019 Wednesday 2;16 PM # Address : Bacolod City, Negros Occidental # Tools : Eclipse IDE for JavaScript and Web Developers # and Ruby Version 2.6.3 # Location : Bacolod City, Negros Occidental # Emails : jakerpomperada@gmai.com and jakerpomperada@yahoo.com puts "\n\n" print "\tBasic Math Operations in Ruby"; puts "\n\n" print "\tGive First Value : "; val1 = gets; print "\tGive Second Value : "; val2 = gets; val1 = val1.to_i; val2 = val2.to_i; sum = (val1 + val2); difference = (val1 - val2); product = (val1 * val2); quotient = (val1 / val2); print "\n\n"; print "\t===== DISPLAY RESULT =====" print "\n\n"; print "\tThe sum of ",val1," and ",val2," is ",sum,".\n"; print "\tThe difference between #{val1} and #{val2} is #{difference}.\n"; print "\tThe product of #{val1} and #{val2} is #{product}.\n"; print "\tThe quotient between #{val1} and #{val2} is #{quotient}."; puts "\n\n" print "\tEnd of Program"; puts "\n"