Friday, January 22, 2021

Philippine Peso to Other Currencies in C++

 Machine Problem in C++

 In this tutorial I wrote this program to ask the user  to give Philippine Peso value and convert it to other

 currencies like  hongkong dollar, uae derham, us dollar,   and japanese yen.

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

/* php_peso.cpp



 Machine Problem in C++


 In this tutorial I wrote this program will ask the user

 to give Philippine Peso value and convert it to other

 currencies like  hongkong dollar, uae derham, us dollar, 

 and japanese yen.

 


 Mr. Jake Rodriguez Pomperada,MAED-IT, MIT

 www.jakerpomperada.com

 www.jakerpomperada.blogspot.com

 jakerpomperada@gmail.com

 Bacolod City, Negros Occidental Philippines.


 */


#include <iostream>

#include <iomanip>

 


 int main()


 {


  float php_peso = 0.00;

  float hk_dollar = 0.00, uae_dirham = 0.00;

  float us_dollar = 0.00, jpn_yen = 0.00;


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

  std::cout <<"\tPhilippine Peso to Other Currencies in C++";

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

  std::cout <<"\tGive Philippine Peso Value : ";

    std::cin >> php_peso;

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


  hk_dollar = (php_peso * 0.16137);

    uae_dirham = (php_peso * 0.07646);

    us_dollar = (php_peso * 0.02081);

    jpn_yen =   (php_peso* 2.1612);


    std::cout <<"\tHong Kong Dollar :  " 

<< std::setprecision(3) << hk_dollar <<"\n";

std::cout << std::fixed << std::showpoint;

  std::cout <<"\tUAE Dirham       :  " << std::setprecision(3) 

<<uae_dirham <<"\n"; 

std::cout << std::fixed << std::showpoint;

std::cout <<"\tUS Dollar        :  " << std::setprecision(3) 

<< us_dollar <<"\n";

std::cout << std::fixed << std::showpoint;

std::cout <<"\tJapanese Yen     :  " << std::setprecision(3) 

<< jpn_yen <<"\n"; 

std::cout << std::fixed << std::showpoint;

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

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

 } // End Code


General Average of Three Grading Period in C++

General Average of Three Grading Period in C++

 Machine Problem in C++

Design a program that generates the general average of three grading systems. Display the remarks as output,based on the following given scale.


General Average    Equivalent Grade   Remarks

100-97             1.0                EXCELLENT

96-94              1.25               EXCELLENT

93-91              1.50               VERY GOOD

90-88              1.75               VERY GOOD

87-85              2.0                GOOD

84-82              2.25               GOOD

81-79              2.5                SATISFACTORY

76-78              2.75               FAIR

75                 3.0                PASSED

BELOW 75           5.0                FAILED 


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


/* general_average.cpp

Machine Problem in C++


Design a program that generates the general average of three

grading systems. Display the remarks as output,based on the 

following given scale.


General Average    Equivalent Grade   Remarks

100-97             1.0                EXCELLENT

96-94              1.25               EXCELLENT

93-91              1.50               VERY GOOD

90-88              1.75               VERY GOOD

87-85              2.0                GOOD

84-82              2.25               GOOD

81-79              2.5                SATISFACTORY

76-78              2.75               FAIR

75                 3.0                PASSED

BELOW 75           5.0                FAILED 



Author     : Jake Rodriguez Pomperada, MAED-IT, MIT

Tools      : Dev C++ 

Websites   : www.jakerpomperada.com    www.jakerpomperada.blogspot.com

Email      : jakerpomperada@gmail.com

Location   : Bacolod City, Negros Occidental, Philippines


*/



#include <iostream> 

#include <iomanip>

#include <string>



int main()

{

std::string remarks;

int prelim=0,midterm=0,endterm=0;

int general_average=0;

float equiv_grade=0;


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

std::cout << "\tGeneral Average of Three Grading Period in C++";

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

std::cout << "\tEnter Prelim Grade  : ";

std::cin >> prelim;

std::cout << "\tEnter Midterm Grade : ";

std::cin >> midterm;

std::cout << "\tEnter Endterm Grade : ";

std::cin >> endterm;

general_average = (prelim+midterm+endterm)/3;

 

 

if (general_average>= 97 && general_average <= 100) {

equiv_grade = 1.0;

remarks = "EXCELLENT";

} else if (general_average>= 94 && general_average <= 96) {

equiv_grade = 1.25;

remarks = "EXCELLENT";

} else if (general_average>= 91 && general_average <= 94) {

equiv_grade = 1.50;

remarks = "VERY GOOD";

} else if (general_average>= 88 && general_average <= 90) {

equiv_grade = 1.75;

remarks = "VERY GOOD";

} else if (general_average>= 85 && general_average <= 87) {

equiv_grade = 2.0;

remarks = "GOOD";

} else if (general_average>= 82 && general_average <= 84) {

equiv_grade = 2.25;

remarks = "GOOD";

} else if (general_average>= 79 && general_average <= 81) {

equiv_grade = 2.25;

remarks = "SATISFACTORY";

} else if (general_average>= 76 && general_average <= 78) {

equiv_grade = 2.75;

remarks = "FAIR";

}else if (general_average>= 75) {

equiv_grade = 3.0;

remarks = "FAIR";

} else {

equiv_grade = 5.0;

remarks = "FAILED";

}

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

std::cout <<"\tGeneral Average Grade  :  " <<general_average <<"\n";

std::cout <<"\tEquivalent Grade       :  " 

<< std::setprecision(3) << equiv_grade <<"\n";

    std::cout << std::fixed << std::showpoint;

std::cout <<"\tGrade Remarks          :  " <<remarks;

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

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

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

}


Thursday, January 21, 2021

Philippine Peso To Other Currencies in C

Philippine Peso to Other Currencies in C

 Machine Problem in C

 In this tutorial I wrote this program to ask the user  to give Philippine Peso value and convert it to other

 currencies like  hongkong dollar, uae derham, us dollar,  and japanese yen.

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


/* php_peso.c


 Machine Problem in C

   

 In this tutorial I wrote this program to ask the user

 to give Philippine Peso value and convert it to other

 currencies like  hongkong dollar, uae derham, us dollar, 

 and japanese yen.

 

 Mr. Jake R. Pomperada,MAED-IT, MIT

 www.jakerpomperada.com

 www.jakerpomperada.blogspot.com

 jakerpomperada@gmail.com

 Bacolod City, Negros Occidental Philippines.

 */

 

 

 #include <stdio.h>

 

 int main()

 {

  float php_peso = 0.00;

  float hk_dollar = 0.00, uae_dirham = 0.00;

  float us_dollar = 0.00, jpn_yen = 0.00;

 

  printf("\n\n");

  printf("\tPhilippine Peso to Other Currencies in C");

  printf("\n\n");

  printf("\tGive Philippine Peso Value : ");

  scanf("%f", &php_peso);

  printf("\n\n");

 

  hk_dollar = (php_peso * 0.16137);

    uae_dirham = (php_peso * 0.07646);

    us_dollar = (php_peso * 0.02081);

    jpn_yen =   (php_peso* 2.1612);


  printf("\tHong Kong Dollar : %5.2f\n ",hk_dollar);

  printf("\tUAE Dirham       : %5.2f\n ",uae_dirham); 

  printf("\tUS Dollar        : %5.2f\n ",us_dollar);

  printf("\tJapanese Yen     : %5.2f\n ",jpn_yen); 

  printf("\n\n");

  printf("\tEnd of Program");

 }

 

Wednesday, January 20, 2021

Selection Sort in C++

Selection Sort in C++

 Machine Problem in C++

Write a program to ask the user to give a series of numbers and then the program will sort the given numbers using selection sort algorithms.

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 

/* selection_sort.cpp

       

    Machine Problem in C++

    

Write a program to ask the user to give a series of

numbers and then the program will sort the given 

numbers using selection sort algorithms.

    

    Jake R. Pomperada, MAED-IT, MIT

    www.jakerpomperada.com

    www.jakerpomperada.blogspot.com

    jakerpomperada@gmail.com

    Bacolod City, Negros Occidental, Philippines


*/ 


#include <iostream>


void selection_sort();


int i=0,a[100], num=0;


int main()

{

    

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

    std::cout <<"\tSelection Sort in C++";

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

    std::cout <<"\tHow many items in the array? : ";

    std::cin >> num;

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

    

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

         std::cout <<"\tGive value in item no." << i+1 << " : ";

         std::cin >> a[i];

        }

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

    std::cout <<"\n";

std::cout <<"\t";

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

        std::cout << " " << a[i] << " ";

    selection_sort();

    std::cout <<"\n";

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

    std::cout <<"\n";

std::cout <<"\t";

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

        std::cout << " " << a[i] << " ";

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

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

}


void selection_sort()

{

    int i, j, min, temp;

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

    {

        min = i;

        for (j=i+1; j<num; j++)

        {

            if (a[j] < a[min])

                min = j;

        }

        temp = a[i];

        a[i] = a[min];

        a[min] = temp;

    }

}

Tuesday, January 19, 2021

Selection Sort in C

Selection Sort in C

  Machine Problem in C

Write a program to ask the user to give a series of numbers and then the program will sort the given numbers using selection sort algorithms.

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


/* selection_sort.c

       

    Machine Problem in C

    

Write a program to ask the user to give a series of

numbers and then the program will sort the given 

numbers using selection sort algorithms.

    

    Jake R. Pomperada, MAED-IT, MIT

    www.jakerpomperada.com

    www.jakerpomperada.blogspot.com

    jakerpomperada@gmail.com

    Bacolod City, Negros Occidental, Philippines


*/ 


#include <stdio.h>


void selection_sort();


int i=0,a[100], num=0;


int main()

{

    

    printf("\n\n");

    printf("\tSelection Sort in C");

    printf("\n\n");

    printf("\tHow many items in the array? : ");

    scanf("%d", &num);

    printf("\n\n");

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

         printf("\tGive value in item no. %d : ",i+1);

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

        }

    printf("\n\tBefore sorting:\n");

    printf("\n");

printf("\t");

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

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

    selection_sort();

    printf("\n");

    printf("\n\tAfter sorting:\n");

    printf("\n");

    printf("\t");  

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

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

    getch();

}


void selection_sort()

{

    int i, j, min, temp;

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

    {

        min = i;

        for (j=i+1; j<num; j++)

        {

            if (a[j] < a[min])

                min = j;

        }

        temp = a[i];

        a[i] = a[min];

        a[min] = temp;

    }

}

Sunday, January 17, 2021

Factorial a Number in Bash

Factorial a Number in Bash

 I wrote this simple bash script to ask the user to give a number and then the program will compute the factorial value of 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 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

factorial.sh

#!/bin/bash
#Factorial a Number in Bash  
#Mr. Jake Rodriguez Pomperada,MAED-IT,MIT
#Bacolod City, Negros Occidental Philippines

printf  "\n\n"
printf  "\tFactorial a Number in Bash"
printf  "\n\n"
printf  "\tGive a Number : " 
read num

factorial=1

for((i=2;i<=num;i++))
{
  factorial=$((factorial * i))  #factorial = factorial * i
}

printf  "\n"
printf  "\tThe factorial value of $num is $factorial."
printf  "\n\n"       
printf  "\tEnd of Program"
printf  "\n\n"

Philippine Peso to other currencies in Visual Basic NET

 In this tutorial I wrote this program to ask the user to give Philippine Peso value and convert it to other currencies like  hongkong dollar, uae derham, us dollar, and japanese yen using 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 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

Public Class Form1


    ' Philippine Peso to other currencies in Visual Basic NET

    ' Author : Jake Rodriguez Pomperada, MAED-IT, MIT

    ' www.jakerpomperada.blogspot.com

    ' www.jakerpomperada.com

    ' jakerpomperada@gmail.com

    ' Bacolod City, Negros Occidental, Philippines


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

        Dim hk_dollar1, uae_dirham1, us_dollar1, jpn_yen1 As Decimal


        If (php_peso.Text = "") Then

            MessageBox.Show("Cannot Be Empty", "Reminder",

                           MessageBoxButtons.OK, MessageBoxIcon.Error)

            php_peso.Focus()

        Else

            hk_dollar1 = Math.Round(Val(php_peso.Text) * 0.16137, 7)

            uae_dirham1 = Math.Round(Val(php_peso.Text) * 0.07646, 7)

            us_dollar1 = Math.Round(Val(php_peso.Text) * 0.02081, 7)

            jpn_yen1 = Math.Round(Val(php_peso.Text) * 2.1612, 7)


            hk_dollar.Text = hk_dollar1

            uae_dirham.Text = uae_dirham1

            us_dollar.Text = us_dollar1

            jpn_yen.Text = jpn_yen1

        End If

    End Sub


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

        php_peso.Text = ""

        hk_dollar.Text = ""

        uae_dirham.Text = ""

        us_dollar.Text = ""

        jpn_yen.Text = ""

        php_peso.Focus()

    End Sub


    Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click

        End

    End Sub

End Class



Tools Para Maging Computer Programmer

Friday, January 15, 2021

Square Root in Visual Basic 6

Square Root a Number in Visual Basic 6

 Machine Problem


Write a program using Microsoft Visual Basic 6 to ask the user to give a number and then the program will convert the given number to its square root 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.

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


' Code By Mr. Jake R. Pomperada,MAED-IT,MIT

' www.jakerpomperada.com

' jakerpomperada@gmail.com

' Product of Philippines



Private Sub Command1_Click()

Text2.Text = Sqr(Val(Text1.Text))

End Sub


Private Sub Command2_Click()

Text1.Text = ""

Text2.Text = ""

Text1.SetFocus

End Sub


Private Sub Command3_Click()

End

End Sub


Square Root in C