Sunday, March 12, 2023

Count Vowels in a String in Pascal

 A program that will ask the user to give a string or sentence and then the program will count the vowels in a string or sentence using Pascal 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

program CountVowels;


var

   inputStr: string;

   count: integer;

   i: integer;


begin

   count := 0;

   writeln;

   write('Count Vowels in a String in Pascal');

   writeln;

   writelnl

   write('Enter a string: ');

   readln(inputStr);

   

   for i := 1 to length(inputStr) do begin

      case inputStr[i] of

         'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U': count := count + 1;

      end;

   end;

   writeln;

   writeln('The number of vowels in the string is: ', count);

   readln;

end.


Saturday, March 11, 2023

Hello World in Kotlin

Variables in Modern C++

Variables in Modern C++

 A simple program to demonstrate how to declare variables in modern 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>

#include <iomanip>

#include <string>


int main()

{

int age=44;

std::string emp_name= "John Doe";

double salary= 12456.34;

bool status = true;

std::cout <<"\n";

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

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

std::cout << std::boolalpha; // print bools as true or false

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

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

std::cout << "Salary  : PHP " << salary<< "\n";

}


Friday, March 10, 2023

Insertion Sort in C

Insertion Sort in C

 A program to show how to implement insertion sort 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>


void insertionSort(int arr[], int n) {

    int i, key, j;

    for (i = 1; i < n; i++) {

        key = arr[i];

        j = i - 1;


        while (j >= 0 && arr[j] > key) {

            arr[j + 1] = arr[j];

            j = j - 1;

        }

        arr[j + 1] = key;

    }

}


int main() {

    int n, i;

    printf("\n\n");

    printf("Insertion Sort in C\n\n");

    printf("Enter number of elements: ");

    scanf("%d", &n);


    int arr[n];

    printf("Enter %d integers:\n", n);


    for (i = 0; i < n; i++) {

        scanf("%d", &arr[i]);

    }


    insertionSort(arr, n);


    printf("Sorted array in ascending order:\n");

    for (i = 0; i < n; i++) {

        printf("%d ", arr[i]);

    }


    return 0;

}


Thursday, March 9, 2023

Payroll Program Using Scala

Payroll Program Using Scala

 Machine Problem

Write a program to ask the user to give the employee's name, number of days' work, and rate per day. The program will compute the salary of the employee by displaying the employee's name, and their salary 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


/* Payroll_Program.scala

   Prof. Jake Rodriguez Pomperada, MAED-IT, MIT

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

   jakerpomperada@gmail.com

   November 09, 2021  10:02 PM Tuesday

   Bacolod City, Negros Occidental

 */



import java.util.Scanner;


object Payroll_Program {


  def main(args: Array[String]) : Unit = {


    var input = new Scanner(System.in);


    print("\n\n");

    print("\tPayroll Program Using Scala");

    print("\n\n");

    print("\tEnter Employee's Name : ");

    var emp_name = input.nextLine();


    print("\tEnter Days Worked     : ");

    var days = input.nextDouble();


    print("\tEnter Rate Per Day    : ");

    var rate = input.nextDouble();


    var salary = (days * rate);


    print("\n");

    print("\tEmployee's Name       :  " + emp_name + "\n");

    print("\n");

    print("\tThe Gross Salary      : PHP  " + f"$salary%5.2f" )

    print("\n\n");

    print("\tEND OF PROGRAM");

    print("\n\n");

  }

}


Addition of Two Numbers in Kotlin

Addition of Two Numbers in Kotlin

 A program that will ask the user to give two numbers and then the program will compute the sum of two numbers using Kotlin 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

fun main() { print("\n\n") print("\tAddition of Two Numbers in Kotlin\n\n") // Prompt user to enter first number print("\tEnter the first number: ") val num1 = readLine()!!.toInt() // readLine() returns a String, so we need to convert it to a Integer print("\n") // Prompt user to enter second number print("\tEnter the second number: ") val num2 = readLine()!!.toInt() // Add the two numbers and print the result val sum = num1 + num2 println() println("\tThe sum of $num1 and $num2 is $sum") println() print("\tEnd of Program") println() }

Wednesday, March 8, 2023

Kilometers To Miles in Pascal

Kilometers To Miles in Pascal

 A program to ask the user to give distance in kilometers and then the program will convert it into miles equivalent using Pascal 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

program KilometersToMiles; var kilometers, miles: real; begin writeln; writeln; write('Kilometers To Miles in Pascal'); writeln; writeln; write('Enter distance in kilometers: '); readln(kilometers); miles := kilometers / 1.609; // 1 mile = 1.609 kilometers writeln('Distance in miles: ', miles:0:2); writeln; write('End of Program'); writeln; readln; end.

Tuesday, March 7, 2023

Julianna's Class Participation

Centimeters To Meters and Kilometers in C#

Centimeters To Meters and Kilometers in C#

  A program that will ask the user length in centimeters and then our program will convert it into meters and kilometers 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

using System; class Program { static void Main(string[] args) { Console.Write("\n\n"); Console.Write("\tCentimeters To Meters and Kilometers in C#\n\n"); Console.Write("\tEnter a length value in centimeters: "); double centimeters = double.Parse(Console.ReadLine()); double meters = centimeters / 100; // Convert centimeters to meters double kilometers = centimeters / 100000; // Convert centimeters to kilometers Console.Write("\n\n"); Console.WriteLine("\tThe Length in meters: " + meters.ToString("F2")); Console.WriteLine("\tThe Length in kilometers: " + kilometers.ToString("F2")); Console.Write("\n\n"); Console.Write("\tEnd of Program\n\n"); } }

Monday, March 6, 2023

Centimeters To Meters and Kilometers in Java

Centimeters To Meters and Kilometers in Java

 A program that will ask the user length in centimeters and then our program will convert it into meters and kilometers 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.

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

import java.util.Scanner;


public class CentimeterConverter {

   public static void main(String[] args) {

       double centimeters, meters, kilometers;

       Scanner input = new Scanner(System.in);


       // Input centimeters

       System.out.println();

       System.out.print("\tCentimeters To Meters and Kilometers in Java\n\n");

       System.out.print("Enter length in centimeters: ");

       centimeters = input.nextDouble();


       // Convert to meters and kilometers with two decimal places

       meters = centimeters / 100.0;

       kilometers = centimeters / 100000.0;


       // Output results with two decimal places

       System.out.printf("%.2f centimeters is equal to %.2f meters.%n", centimeters, meters);

       System.out.printf("%.2f centimeters is equal to %.2f kilometers.%n", centimeters, kilometers);

   }

}