Friday, November 22, 2019

Product of Two Numbers in C Using Functions

I wrote this program to ask the user to give two numbers and then the program will compute its product using functions 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Sample Program Output


Program Listing

product.c

#include <stdio.h>

void product()
{
int a=0,b=0,multiply=0;
printf("\n\n");
printf("\tProduct of Two Numbers in C using Functions");
printf("\n\n");
printf("\tEnter First  Value : ");
scanf("%d",&a);
printf("\tEnter Second Value : ");
scanf("%d",&b);
multiply = (a*b);
printf("\n\n");
printf("\tThe product of %d and %d is %d.",a,b,multiply);
printf("\n\n");
printf("\tEnd of the Program");
}


int main()
{
 product();
}





Addition of Two Numbers in C Using Pointers

Addition of Two Numbers in C Using Pointers

I wrote this program that will ask the user to give two numbers and then the program will compute the sum 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.



Sample Program Output




Program Listing

#include <stdio.h>

int main(){
int a=0,b=0,c=0;
int *p, *q, *r;
printf("\n\n");
printf("\tAddition of Two Numbers in C Using Pointers");
printf("\n\n");
printf("\tEnter Two Numbers : ");
scanf("%d%d",&b,&c);
p=&a;
q=&b;
r=&c;
*p = *q + *r;
printf("\n\n");
printf("\tThe sum of %d and %d is %d.",b,c,*p);
printf("\n\n");
printf("\tEnd of the Program");
}

Addition of Three Numbers in C Using Function

Addition of Three Numbers in C Using Function

I wrote this program to ask the user to give three numbers and then the program will compute the sum of three numbers using C programming language using functions.

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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Sample Program Output


Program Listing

addition.c


#include <stdio.h>

int addition(int a, int b, int c)
{
return(a+b+c);
}

int main()
{
int x=0,y=0,z=0;
int sum=0;
printf("\n\n");
printf("\tAddition of Three Numbers in C Using Function");
printf("\n\n");
printf("\tEnter Three Numbers : ");
scanf("%d%d%d",&x,&y,&z);
sum = addition(x,y,z);
printf("\n\n");
printf("\tThe sum of %d, %d and %d is %d.",x,y,z,sum);
printf("\n\n");
printf("\tEnd of the Program");
}


Wednesday, November 20, 2019

Difference Between Two Numbers in Visual Foxpro

A simple program that I wrote to compute the difference between two numbers using Visual Foxpro 9.0 as my 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.




Sample Program Output


Program Listing


* Ok Button

val_one = val(thisform.text1.Text)
val_two = val(thisform.text2.Text)

diff_all = val_one - val_two


MESSAGEBOX("The difference between " + allTRIM(STR(val_one)) + " and " + allTRIM(STR(val_two)) + " is " + allTRIM(STR(diff_all)) +".")


* Quit Button

thisform.Release

Tuesday, November 19, 2019

Odd and Even Number Checker in Visual Basic NET

Odd and Even Number Checker in Visual Basic NET

I wrote this simple program to ask the user to give a number and then the program will determine whether the given number is an odd or even number 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.



Sample Program Output


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 a As Integer

        a = Val(TextBox1.Text)

        If (a Mod 2 = 0) Then
            MsgBox("The given number " & a & " is Even Number")
        Else
            MsgBox("The given number " & a & " is Odd Number")
        End If
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        TextBox1.Text = ""
        TextBox1.Focus()
    End Sub
End Class


Legal Age Checker in Visual Basic NET

Legal Age Checker in Visual Basic NET

I wrote this simple program that will ask the user to give his or her age and then the program will checker and determine if the given age of the user is already an Adult or still a Minor 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.



Sample Program Output


Program Listing

Public Class Form1

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

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

        age = Val(TextBox1.Text)

        If (age >= 18) Then
            MsgBox("At the age of " & age & " years old. You are already an Adult.")
            TextBox1.Text = ""
            TextBox1.Focus()
        Else
            MsgBox("At the age of " & age & " years old. You are still a Minor.")
            TextBox1.Text = ""
            TextBox1.Focus()
        End If
    End Sub
End Class




Sunday, November 17, 2019

Money Bill Denominator in C

I wrote this program using a C programming language that will ask the user an amount in the Philippines Peso currency and then the program will count the number of bill denominators in the given amount from 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.





Sample Program Output


Program Listing

money.c

/* money.c
   Jake R. Pomperada,MAED-IT
   November 17, 2019
   Bacolod City, Negros Occidental
*/

#include <stdio.h>

int main()
{
    int amount=0;
    
    int note1000=0,note500=0, note100=0, note50=0, note20=0, note10=0, note5=0, note2=0, note1=0;
    

    note1000=note500 = note100 = note50 = note20 = note10 = note5 = note2 = note1 = 0;

    printf("\n\n");
    printf("\tMoney Denominator in C");
    printf("\n\n");
    printf("\tGive an Amount PHP : ");
    scanf("%d", &amount);


    if(amount >= 1000)
    {
        note1000 = amount/1000;
        amount -= note1000 * 1000;
    }

    if(amount >= 500)
    {
        note500 = amount/500;
        amount -= note500 * 500;
    }
    if(amount >= 100)
    {
        note100 = amount/100;
        amount -= note100 * 100;
    }
    if(amount >= 50)
    {
        note50 = amount/50;
        amount -= note50 * 50;
    }
    if(amount >= 20)
    {
        note20 = amount/20;
        amount -= note20 * 20;
    }
    if(amount >= 10)
    {
        note10 = amount/10;
        amount -= note10 * 10;
    }
    if(amount >= 5)
    {
        note5 = amount/5;
        amount -= note5 * 5;
    }
    if(amount >= 2)
    {
        note2 = amount /2;
        amount -= note2 * 2;
    }
    if(amount >= 1)
    {
        note1 = amount;
    }

    printf("\n\n");
    printf("\tTotal number of notes = \n");
    printf("\n");
     printf("\t1000 = %d\n", note1000);
    printf("\t500 = %d\n", note500);
    printf("\t100 = %d\n", note100);
    printf("\t50 = %d\n", note50);
    printf("\t20 = %d\n", note20);
    printf("\t10 = %d\n", note10);
    printf("\t5 = %d\n", note5);
    printf("\t2 = %d\n", note2);
    printf("\t1 = %d\n", note1);
    printf("\n\n");
    printf("\tEnd of Program");
}



Saturday, November 16, 2019

Addition of Three Numbers in Pascal

Addition of Three Numbers in Pascal

I wrote this program to ask the user to give three numbers and then the program will compute the sum of three numbers using Pascal as my 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 in 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/





Sample Program Output


Program Listing

addition.pas

Program Addition;
Uses Crt;

Var sum,a,b,c : integer;


Begin
 clrscr;
 write('Addition of Three Numbers in Pascal');
 writeln;
 writeln;
 write('Enter First Value   : ');
 readln(a);
 write('Enter Second Value  :  ');
 readln(b);
 write('Enter Third Value   :  ');
 readln(c);

 sum := (a+b+c);

 writeln;
 writeln;
 write('The sum of ',a,', ',b,', ',' and ',c,' is ',sum,'.');
 writeln;
 writeln;
 write('End of Program');
 readln;
End.



Industry 4.0