Thursday, November 14, 2019

Time Rate Calculator in C

A simple program that I called time rate calculator 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.


Program Listing

#include<stdio.h>

int main()
{
float a = 0;
float b = 0;
float Q = 0;
printf("time rate calculator");
printf("\n\n");
printf("container volume: ");
scanf("%f",&a);
printf("\n\n");
printf("flow rate:");
scanf("%f",&b);
Q = a/b;
printf("filled a tank with %.2fm^3 volume with a flow rate of %fm^3/min in a total time rate of %.2f min",a,b,Q);
printf("\n\n");
return 0;
}


Learning Math in C

A simple program is written in C to learn multiplication in Math.

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.


Program Listing

#include <stdio.h>

int main()
{
    printf("\n\n\t\tLearning Math\n\n\n");
    int n,i;

    printf("Enter an integer you need to print the table of: ");
    scanf("%d", &n);
    printf("\n\n\n");

    for(i = 1; i <= 10; i++)
    {
        printf("\n\t\t\t%d * %d   =   %d \n", n, i, n*i);
    }
    return 0;
}

Average of the numbers in C

A simple program is written in C to get the average of the given numbers by the 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.


Program Listing

#include<stdio.h>

int main()
{
    printf("\n\n\t\tLearning Math\n\n");
printf("\tGetting the Average of the numbers\n\n\n");
    int n, i;
    float sum = 0, x;

    printf("Enter number of elements:  ");
    scanf("%d", &n);
    printf("\n\n\nEnter %d elements\n\n", n);
    for(i = 0; i < n; i++)
    {
        scanf("%f", &x);
        sum += x;
    }
    printf("\n\n\nAverage of the entered numbers is =  %f", (sum/n));
    printf("\n\n\n");
    return 0;
}




Electronic Registrar Record System in Microsoft Visual Basic 6 and MS Access

In this article, I would like to share with you the work of my close friend and fellow software engineer Sir Jonathan Mandia he wrote this Electronic Registrar Record System in  Microsoft Visual Basic 6 and MS Access.

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



School Voting System in Visual Basic 6 and MS Access

In this article, I would like to share with you the work of my close friend and fellow software engineer Sir Jonathan Mandia he wrote this Student Voting System Using Microsoft Visual Basic 6 and Microsoft Access.

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




Two Digits into Words Translator in C

A simple program that will ask the user to give two digits and translates into words using the 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 num1=0, num2=0;
   
    printf("\n\n");
    printf("\tTwo Digits into Words Translator in C");
    printf("\n\n");
    printf("\tEnter a two-digit number: ");
    scanf("%1d%1d", &num1, &num2);
 
    printf("\tYou have entered: ");
 
  
    switch (num1)
    {
        case 1:
           
            switch (num2)
            {
                case 0:
                    printf("\tten"); 
                    return 0;
                case 1:
                    printf("\televen"); 
                    return 0;
                case 2:
                    printf("\ttwelve"); 
                    return 0;
                case 3:
                    printf("\tthirteen"); 
                    return 0;
                case 4:
                    printf("\tfourteen"); 
                    return 0;
                case 5:
                    printf("\tfifteen"); 
                    return 0;
                case 6:
                    printf("\tsixteen"); 
                    return 0;
                case 7:
                    printf("\tseventeen"); 
                    return 0;
                case 8:
                    printf("\teigthteen"); 
                    return 0;
                case 9:
                    printf("\tnineteen"); 
                    return 0;
            }
        case 2:
            printf("\ttwenty"); 
            break;
        case 3:
            printf("\tthirty"); 
            break;
        case 4:
            printf("\tforty"); 
            break;
        case 5:
            printf("\tfifty"); 
            break;
        case 6:
            printf("\tsixty"); 
            break;
        case 7:
            printf("\tseventy"); 
            break;
        case 8:
            printf("\teighty"); 
            break;
        case 9:
            printf("\tninety"); 
            break;
    }
 
   
    switch (num2)
    {
        case 1:
            printf("\t-one"); 
            break;
        case 2:
            printf("\t-two"); 
            break;
        case 3:
            printf("\t-three"); 
            break;
        case 4:
            printf("\t-four"); 
            break;
        case 5:
            printf("\t-five"); 
            break;
        case 6:
            printf("\t-six"); 
            break;
        case 7:
            printf("\t-seven"); 
            break;
        case 8:
            printf("\t-eight"); 
            break;
        case 9:
            printf("\t-nine"); 
            break;
    }
 
    printf("\n\n");
    printf("\tEnd of Program");
    printf("\n\n");
}

Odd and Even Number Checker in C

Odd and Even Number Checker in C

I wrote this program that will ask the user to give a number and then the program will check if the given number is an odd or even number 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 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

odd_even.c

#include <stdio.h>

int main()
{
int a=0,check_num=0;
printf("\n\n");
printf("\tOdd and Even Number Checker in C");
printf("\n\n");
printf("\tGive a Number : ");
scanf("%d",&a);
check_num = (a % 2);
printf("\n\n");
if (check_num == 0) {
printf("\tThe given number %d is an EVEN number.",a);
} else {
printf("\tThe given number %d is an ODD number.",a);
}
printf("\n\n");
printf("\tEnd of Program");
}

String Palindrome in C

String Palindrome in C

I wrote this program that will ask the user to give a string and then the program will check if the given string is a Palindrome or Not a Palindrome. Examples of word palindrome as follows
  • Anna 
  • Civic
  • Kayak
  • Level
  • Madam
  • Mom
  • Noon
  • Racecar
  • Radar
  • Redder
  • Refer
  • Repaper
  • Rotator
  • Rotor
  • Sagas
  • Solos
  • Stats
  • Tenet
  • Wow
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

palindrome.c

#include <stdio.h>
#include <string.h>

int main()
{
char a[100], b[100];
printf("\n\n");
printf("\tString Palindrome in C ");
printf("\n\n");
printf("\tGive a String : ");
gets(a);
strcpy(b,a);
strrev(b);
printf("\n\n");
if (strcmp(a,b) == 0) {
printf("\tThe given string is a Palindrome.");
} else {
printf("\tThe given string is Not a Palindrome.");
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
}



Number Palindrome in C

Number Palindrome in C

I wrote this program that I called number palindrome in C that will ask the user to give an integer number and then the program will check if the given number is a palindrome or not using C as our 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/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.






Sample Program Output


Program Listing

#include <stdio.h>

int main()
{
int n=0,r=0,t=0;
printf("\n\n");
printf("\tNumber Palindrome in C");
printf("\n\n");
printf("\tGive a Number : ");
scanf("%d",&n);
t = n;
while (t != 0) {
r = r* 10;
r = r + t % 10;
t = t/10;
}
printf("\n\n");
if (n == r) {
printf("\tThe given no. %d is a Palindrome.",n);
} else {
printf("\tThe given no. %d is Not a Palindrome.",n);
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
}



Factorial Program in Microsoft Visual Basic 6

Factorial Program in Visual Basic 6

I wrote this program to ask the user to give a number and then the program will compute the factorial value of the given number using Microsoft Visual Basic 6.

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

Option Explicit

Private Function Factorial(ByVal y As Double) As Double
If y <= 1 Then
  Factorial = 1
Else
   Factorial = y * Factorial(y - 1)
End If
End Function

Private Sub Command1_Click()
 Dim x As Integer, n As Integer

 Call List1.Clear
 n = Val(Text1.Text)

 For x = 0 To n
    List1.AddItem Format$(x, "@@") & "! = " & _
                  Factorial((x))
 Next x
End Sub

Private Sub Command2_Click()
End
End Sub