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
Sunday, March 28, 2021
Find Power of a Number in Python
Write a program to ask the user to input an integer value and exponent value then, the program will compute the power value and display the result on the screen.
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.
# Jake R. Pomperada, MAED-IT, MIT
# March 28, 2021 Sunday 10:23 AM
# Bacolod City, Negros Occidental
import math
print("@==================================================@")
print(" Find Power of a Number in Python ")
print("@===================================================@")
print("")
number = int(input("Enter any Positive Integer : "))
exponent = int(input("Enter Exponent Value : "))
print("")
power = math.pow(number, exponent)
print("The Result of {0} Power {1} = {2}".format(number, exponent, power))
print("")
print("===== THE END OF PROGRAM ===== ")
Loan Interest Solver in Python
Write a program that will ask the user to input principal amount loan, the number of years the loan to be paid, and the percentage interest per year. The program will compute the yearly interest rate of the loan and display the result 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.
# Jake R. Pomperada, MAED-IT, MIT
# March 28, 2021 Sunday 8:27 AM
# Bacolod City, Negros Occidental
print("@====================================@")
print(" Loan Interest Solver ")
print("@====================================@")
print("")
principal=float(input("Enter Principal Amount PHP : "))
time=float(input("Enter Number of Year : "))
rate=float(input("Enter Percent Rate % : "))
solve_interest = (principal * time * rate) / 100
print("")
print("The Interest is PHP %.2f" %solve_interest)
print("")
print("===== THE END OF PROGRAM ===== ")
Saturday, March 27, 2021
For-Range Loop in Go
In this tutorial I will show you how to declare and use for range looping statement 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.
Friday, March 26, 2021
Even and Odd Numbers Generator in VB.NET
A program that I wrote to generate even and odd numbers using vb.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.
Program Listing
Public Class Form1
Private Sub btnClear_Click(sender As Object, e As EventArgs) Handles btnClear.Click
txtInput.Clear()
txtOutput.Clear()
lblCountEven.Text = ""
lblCountOdd.Text = ""
lblSumEven.Text = ""
lblSumOdd.Text = ""
lblLastEven.Text = ""
lblLastOdd.Text = ""
End Sub
Private Sub btnView_Click(sender As Object, e As EventArgs) Handles btnView.Click
txtOutput.Clear()
Dim sumEven, sumOdd, countEven, countOdd, lastEven, lastOdd As Integer
Dim i = 1
Dim input = txtInput.Text
While i <= input
If i Mod 2 = 0 Then
txtOutput.Text += i & " = Even" & Environment.NewLine
sumEven += i
countEven += 1
Else
txtOutput.Text += i & " = Odd" & Environment.NewLine
sumOdd += i
countOdd += 1
End If
If i = input And i Mod 2 = 0 Then
lastEven = i
lastOdd = i - 1
Else
lastEven = i - 1
lastOdd = i
End If
i += 1
End While
lblCountEven.Text = countEven
lblCountOdd.Text = countOdd
lblSumEven.Text = sumEven
lblSumOdd.Text = sumOdd
lblLastEven.Text = lastEven
lblLastOdd.Text = lastOdd
End Sub
End Class
Thursday, March 25, 2021
String and Integer Input in Modern C++
A simple program to demonstrate how to declare and use strings and integer data types in C++ programming.
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.
Program Listing
#include <iostream>
using namespace std;
int main() {
string student_name;
string school;
string course_year_section;
int age=0;
std::cout << "\n";
std::cout << "\tString and Integer Input in Modern C++";
std::cout << "\n";
std::cout << "\tName : ";
getline(cin,student_name);
std::cout << "\tAge : ";
cin >> age;
cin.ignore();
std::cout << "\tSchool : ";
getline(cin,school);
std::cout << "Course, Year and Section : ";
getline(cin,course_year_section);
std::cout << "\n\n";
std::cout << "\tDISPLAY RESULTS";
std::cout << "\n\n";
std::cout << "\tName :" << student_name <<"\n";
std::cout << "\tAge :" << age <<"\n";
std::cout << "\tSchool :" << school <<"\n";
std::cout << "\tCourse, Year and Section :"
<< course_year_section <<"\n";
std::cout << "\n";
std::cout << "\tEnd of Program";
std::cout << "\n";
}
Increment and Decrement in PHP
A simple program to demonstrate increment and decrement using PHP 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.
Wednesday, March 24, 2021
Tuesday, March 23, 2021
Addition of Number With Initial Value in C++
A simple addition of two numbers using an initial value and a given number by the user using a 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.
Program Listing
How to use checkbox in PHP
In this tutorial I will show you how to declare and use checkbox using PHP 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.
Sunday, March 21, 2021
Student Grade Solver in C#
Machine Problem
Write a C# program that will input your grades in different subjects last year and display the average grade, highest grade and lowest grade using math function.
Sample Output:
Enter grade in English: 89
Enter grade in Math: 91
Enter grade in Filipino: 92
Enter grade in Science: 88
Average: 90
Lowest Grade: 88
Highest Grade:92
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.
Saturday, March 20, 2021
Swap of Two Numbers in Python
Write a program that will ask the user to input two numbers and then, swap the arrangement of the two numbers and display the result 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.
# Jake R. Pomperada, MAED-IT, MIT
# March 20, 2021 Saturday 11:46 PM
# Bacolod City, Negros Occidental
print("@=====================================@")
print(" Swap of Two Numbers ")
print("@=====================================@")
print("");
x = int(input("Enter First Value : "))
y = int(input("Enter Second Value : "))
print("");
print("BEFORE SWAPPING")
print("");
print('The value of x before swapping: {}'.format(x))
print('The value of y before swapping: {}'.format(y))
temp = x
x = y
y = temp
print("");
print("AFTER SWAPPING")
print("");
print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))
print("")
print("===== THE END OF PROGRAM ===== ")
Area of the Circle Solver in Python
Write a program that will ask the user to input a radius of the circle and then, the program will compute the area and circumference of the circle and display the result 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.
# Jake R. Pomperada, MAED-IT, MIT
# March 20, 2021 10:51 PM Saturday
# Bacolod City, Negros Occidental
print("@=============================================@")
print(" Area of the Circle Solver in Python ")
print("@==============================================@")
print("")
PI = 3.14
radius = float(input('Enter the radius of the circle : '))
area = PI * radius * radius
circumference = 2 * PI * radius
print("")
print("Area Of a Circle = %.2f" %area)
print("Circumference Of a Circle = %.2f" %circumference)
print("")
print("===== THE END OF PROGRAM ===== ")
Dictionary in Python
In this tutorial I will show you how to declare and use dictionary in Python programming.
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.
Program Listing
print("\n")
print("\tDictionary in Python\n")
print("Select a process: A) Add Data \tB) Delete Data \tC) End")
process = ["A", "B", "C"]
selection = str(input("Enter selection: "))
dict = {}
while selection.upper() in process:
if selection.upper() == "A":
key = input("Enter Key: ")
val = input(f"Enter Value: ")
dict[key] = val
elif selection.upper() == "B":
delete = str(input("Enter Key: "))
dict.pop(delete)
elif selection.upper() == "C":
print(f"THANK YOU")
break
else:
print(f"Please enter a valid response")
continue
for x in dict:
print(f"{x}:{dict[x]}", end=' ')
print(f"\n")
print("Select a process: A) Add Data \tB) Delete Data \tC) End")
selection = str(input("Enter selection: "))
Friday, March 19, 2021
Weekly Total Expenses in C#
Write a C# program that will input all your expenses for the week and display the total expenses.
Sample dialogue:
Food: 500.00
Grocery: 200.00
Cellphone/Internet Load: 100
Others: 300.00
Total Expenses: 1100.00
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.
Seconds to Hours,Minutes and Seconds Converter in Ruby
Create and design a program that will ask the user to give number in seconds and then the program will convert its hours, minutes and seconds equivalent and display the result 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.