Thursday, July 7, 2022

Compute Quotient and Remainder in C#

 A simple program that I wrote to compute the two given numbers by the user its quotient and remainder values 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

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


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;

using System.Collections.Generic;

using System.Text;


namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {


            int dividend = 0, divisor = 0;


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

            Console.Write("\tCompute Quotient and Remainder in C#");

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

            Console.Write("\tGive a First Number : ");

            dividend = Convert.ToInt32(Console.ReadLine());


            Console.Write("\n");

            Console.Write("\tGive a Second  Number : ");

            divisor = Convert.ToInt32(Console.ReadLine());


            int quotient = dividend / divisor;

            int remainder = dividend % divisor;


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

            Console.WriteLine("\tDividend:{0} Divisor:{1}", dividend, divisor);

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

            Console.WriteLine("\tQuotient = " + quotient);

            Console.Write("\n");

            Console.WriteLine("\tRemainder = " + remainder);

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

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

            Console.Write("\n");

            Console.ReadLine();

        }

    }

}


Tuesday, July 5, 2022

Average of Three Numbers in Visual FoxPro

Average of Three Numbers in Visual FoxPro

 A simple program that I wrote using Microsoft Visual FoxPro that will ask the user to give three numbers and then our program will compute the average of the three given number 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

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


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

* Calculate Button

a = val(thisform.text1.value)

b = val(thisform.text2.value)

c = val(thisform.text3.value)


average_value = (a+b+c) / 3


thisform.text4.value = round(average_value,2)


* Clear Button

thisform.text1.value = ""

thisform.text2.value = ""

thisform.text3.value = ""

thisform.text4.value = ""


thisform.text1.setfocus


* Quit Button

thisform.release



Monday, July 4, 2022

US Dollar To Philippine Peso Using Pointers in C++

US Dollar To Philippine Peso Using Pointers in C++

 A simple program that I wrote using C++ programming language to ask the user to give us dollar value and then the program will convert the given US dollar into Philippine peso equivalent using Pointers.

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

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


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>

using namespace std;

int main()
{
double *pUS_Dollar=new double;
double *pConvert=new double;

cout <<"\n\n";
cout <<"\tUS Dollar To Philippine Peso Using Pointers in C++";
cout <<"\n\n";
cout<<"\tEnter US Dollar Value : ";
cin>>(*pUS_Dollar);
*pConvert=(*pUS_Dollar*54.12);
cout <<"\n";
cout <<"\tUS Dollar  : $ " << fixed << setprecision(2) 
<< *pUS_Dollar <<"\n\n";
cout <<"\tPhilippine Peso Equivalent : PHP " 
<<fixed << setprecision(2) << *pConvert <<"\n";
cout <<"\n\n";
cout <<"\tEnd of Program";
cout <<"\n\n";
}


Addition of Three Numbers Using Pointers in C++

Addition of Three Numbers Using Pointers in C++

 A simple program to ask the user to give three numbers and then the program will ask the sum of the three 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 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

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


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()

{

int *pVal1=new int;

int *pVal2=new int;

int *pVal3=new int;

int *pSum=new int;

cout <<"\n\n";

cout <<"\tAddition of Three Numbers Using Pointers in C++";

cout <<"\n\n";

cout<<"\tEnter first number: ";

cin>>(*pVal1);

cout<<"\tEnter second number: ";

cin>>(*pVal2);

cout<<"\tEnter third number: ";

cin>>(*pVal3);

*pSum=(*pVal1+*pVal2+*pVal3);

cout <<"\n\n";

cout <<"\tThe sum of " << *pVal1 <<"," << *pVal2 <<

", and " << *pVal3 << " is " << *pSum << "\n";

cout <<"\n\n";

cout <<"\tEnd of Program";

cout <<"\n\n";

}






Saturday, July 2, 2022

Sum and Difference of Two Numbers in Go

Sum and Difference of Two Numbers in Go

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

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


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

/* sum_difference.go

   Author   : Mr. Jake Rodriguez Pomperada,MAED-IT, MIT

   Date     :  July 2, 2022  6:42 AM Saturday

   Location : Bacolod City, Negros Occidental

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

   Emails   : jakerpomperada@gmail.com

*/


package main


import "fmt"


func main() {

var val1 int32

var val2 int32

var sum int32

var difference int32


fmt.Print("\n")

fmt.Print("\tSum and Difference of Two Numbers in Go")

fmt.Print("\n\n")

fmt.Print("\tEnter two numbers: ")

fmt.Scanf("%d%d", &val1, &val2)

sum = (val1 + val2)

difference = (val1 - val2)

fmt.Print("\n")

fmt.Println("\tThe sum of", val1, "and", val2, "is", sum, ".")

fmt.Print("\n")

fmt.Println("\tThe difference between", val1, "and", val2, "is", difference, ".")

fmt.Print("\n")

fmt.Print("\tEnd of Program")

fmt.Print("\n")

}



Friday, July 1, 2022

Simple Age Calculator in JavaScript

Simple Age Calculator in JavaScript

 A simple program to calculate the age of the person using JavaScript 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

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


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

index.html


Thursday, June 30, 2022

Feet To Inches in Visual Basic 5

Feet To Inches in Visual Basic 5

 A simple program to ask the user to give feet value and then the program will covert the given feet into inches equivalent using Visual Basic 5 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

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


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

Private Sub Command1_Click()
Dim inches As Double
feet = Val(Text1.Text)
inches = (feet * 12)
MsgBox (vbNewLine & "Feet Value : " & feet & " Feet(s)" & vbNewLine _
& vbNewLine & "Inches Equivalent : " & inches & " Inche(s)")
Text1.Text = ""
Text1.SetFocus
End Sub

Private Sub Command2_Click()
End
End Sub

Feet To Inches in Visual Basic NET

Feet To Inches in Visual Basic NET

 A simple program that will ask the user to give value in feet and then it will compute the inches using Microsoft 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

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


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

Public Class Form1


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

        End

    End Sub


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

        Dim inches As Double

        Dim feet As Double


        feet = Val(TextBox1.Text)


        inches = (feet * 12)


        TextBox2.Text = feet & " Feet(s)"

        TextBox2.ReadOnly = True


        TextBox3.Text = inches & " Inche(s)"

        TextBox3.ReadOnly = True


    End Sub


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

        TextBox1.Text = ""

        TextBox2.Text = ""

        TextBox3.Text = ""

        TextBox1.Focus()

    End Sub

End Class



Wednesday, June 29, 2022

Feet To Inches in C#

Feet To Inches in C#

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

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


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;

using System.Collections.Generic;

using System.Text;


namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            double inch=0.00;

            Console.WriteLine();

            Console.WriteLine("\t===========================================");

            Console.WriteLine("\t\tFeet To Inches in C#");

            Console.WriteLine("\t===========================================");


            Console.WriteLine();

            Console.Write("\tGive Feet Value : ");

            double feet = Convert.ToDouble(Console.ReadLine());


            inch = (feet * 12);


            Console.WriteLine("\n");

            Console.WriteLine("\t{0} Feet(s) is equal to {1} Inches", feet, inch);

            Console.WriteLine("\n");

            Console.WriteLine("\tThank You For Using This Program");

            Console.ReadKey();

        }

    }

}