Learn Computer Programming Free from our source codes in my website.
Sponsored Link Please Support
https://www.techseries.dev/a/27966/qWm8FwLb
https://www.techseries.dev/a/19181/qWm8FwLb
My Personal Website is http://www.jakerpomperada.com
Email me at jakerpomperada@gmail.com and jakerpomperada@yahoo.com
Thursday, June 30, 2022
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.
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#
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();
}
}
}
Tuesday, June 28, 2022
Simple Payroll Program in C# Using OOP
A simple payroll program that I wrote using object oriented programming approach 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;
namespace Simple_Payroll_OOP
{
// a simple payroll program that will ask the user number of days work
// and rate per day and compute the gross pay of an employee using C#
// oop approach in programming
class Program
{
static void PrintHeader()
{
Console.WriteLine("\t===========================================");
Console.WriteLine("\tSimple Payroll Program in C# Using OOP");
Console.WriteLine("\t===========================================");
Console.WriteLine();
}
static void Main(string[] args)
{
Payroll payRoll = new Payroll();
PrintHeader();
while(true)
{
Console.Write("\tEnter number of days worked (0 to quit): ");
int numDays = ConsoleInput.ReadInt();
if(numDays == 0)
break;
Console.Write("\tEnter pay rate: ");
double payRate = ConsoleInput.ReadDouble();
double netPay = payRoll.CalcGrossPay(numDays, payRate);
Console.WriteLine("\tNet pay: " + netPay);
}
SayGoodBye();
Console.ReadKey();
}
private static void SayGoodBye()
{
Console.WriteLine("\n");
Console.WriteLine("\tThank You For Using This Program");
}
}
class Payroll
{
public double CalcGrossPay(int daysWorked, double ratePerDay)
{
return daysWorked * ratePerDay;
}
}
}
Monday, June 27, 2022
Odd and Even Number Using Function in C
A simple program that I wrote to ask the user to give any number and then the program will check if the given number is an odd and even number using functions and bitwise operator 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
/* odd_even_number.c
Jake Rodriguez Pomperada, MAED-IT, MIT
www.jakerpomperada.com and www.jakerpomperada@gmail.com
jakerpomperada@gmail.com
Bacolod City, Negros Occidental
*/
#include <stdio.h>
/**
* Function to check even or odd
* Returns 1 is num is even otherwise 0
* if odd number. Using bitwise operator
* in a function to check for odd and even
* numbers
*/
int isEven_Number(int num)
{
return !(num & 1);
}
int main()
{
int val_num=0;
printf("\n\n");
printf("\tOdd and Even Number Using Function in C\n");
printf("\n");
printf("\tGive any number: ");
scanf("%d", &val_num);
printf("\n\n");
if(isEven_Number(val_num))
{
printf("\tThe given number %d is even number.",val_num);
}
else
{
printf("\tThe given number %d is odd number.",val_num);
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n");
return 0;
}
Sunday, June 26, 2022
US Dollar To Philippine Peso Using Function in C++
A simple program to ask the user to give us dollar money value and convert it into Philippine peso equivalent 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.
Saturday, June 25, 2022
While Loop Statement in Pascal
A simple program that I wrote to demonstrate how to declare and use while loop statement in 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
=================================================
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.
Friday, June 24, 2022
Increment and Decrement Operators in Go
A program that demonstrate increment and decrement operators in 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.
Calculate Area and Circumference of Circle
Machine Problem
Write a program to solve area and
circumference of the circle 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.