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
Wednesday, August 31, 2022
Kilometers To Miles Using a Function in C++
A simple program to ask the user to give distance in kilometers and convert into miles equivalent using a function 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.
Tuesday, August 30, 2022
Celsius To Fahrenheit Using a Function in Python
A simple program to take the temperature in Celsius and convert it into Fahrenheit using a function in Python 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
# Define function to convert celsius to fahrenheit
def Celsius_Fahrenheit(C):
F = (C*1.8)+32
return F
print()
print("\tCelsius To Fahrenheit Using a Function in Python\n")
C = float(input("Give temperature in Celsius: "))
print()
print("Temperature in Celsius = {:.2f}".format(C))
print()
print("Temperature in Fahrenheit = {:.2f}".format(Celsius_Fahrenheit(C)))
print()
print("End of Program")
Fahrenheit To Celsius Using a Function in Python
A simple program to take the temperature in Fahrenheit and convert it into celsius using a function in Python 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.
# Define function to convert fahrenheit to celsius
def Fahrenheit_Celsius(F):
C = (5 / 9) * (F - 32)
return C
print()
print("\tFahrenheit To Celsius Using a Function in Python\n")
F = float(input("Give temperature in Fahrenheit: "))
print()
print("Temperature in Fahrenheit = {:.2f}".format(F))
print()
print("Temperature in Celsius = {:.2f}".format(Fahrenheit_Celsius(F)))
print()
print("End of Program")
Monday, August 29, 2022
US Dollar To Philippine Peso Using Function in C
A simple program to convert US Dollars into Philippine Peso using a function in C programming language.
Currenlty I am 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.
Sunday, August 28, 2022
Addition of Three Numbers Using Functions in Python
A program I wrote in Python uses a function to compute the sum of three numbers and display the results on the screen.
Currenlty I am 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
# Python program to add three numbers using function
def add_num(num1, num2, num3): #user-defind function
num = (num1 + num2 + num3) #calculate the sum of three numbers
return num #return value
# take inputs
num1 = 7
num2 = 12
num3 = 90
# function call
addition = add_num(num1, num2, num3)
# print addition of three values
print("The sum is ",addition)
Friday, August 26, 2022
Personal Information Using Swing in Java
Machine Problem
Create a Java JPanel/JOption program that will display your Personal Information and Education Background.
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
package demo;
/*
* H. Create a Java JPanel/JOption program that will display display your Personal Information and
Education Background
*/
import javax.swing.JOptionPane;
public class Personal_Swing {
public static void main(String[] args) {
// TODO Auto-generated method stub
String student_name =
JOptionPane.showInputDialog( "What is your name? " );
String home_address =
JOptionPane.showInputDialog( "What is your home address? " );
String mobile_number =
JOptionPane.showInputDialog( "What is your mobile number? " );
String email_address =
JOptionPane.showInputDialog( "What is your email address? " );
String course =
JOptionPane.showInputDialog( "What is your course you finished in college? " );
String school =
JOptionPane.showInputDialog( "What is your school? " );
String year_graduated =
JOptionPane.showInputDialog( "What year you graduate in college? " );
JOptionPane.showMessageDialog( null, "\n" + "PERSONAL INFORMATION" + "\n\n"
+ "Student Name : " + student_name.toUpperCase() + "\n"
+ "Home Address : " + home_address.toUpperCase() + "\r\n"
+ "Mobile Number : " + mobile_number + "\r\n"
+ "Email Address : " + email_address + "\r\n\n"
+ "EDUCATIONAL BACKGROUND" + "\r\n\n"
+ "Course Graduated : " + course.toUpperCase() + "\r\n"
+ "School Graduated : " + school.toUpperCase() + "\r\n"
+ "Year Graduate : " + year_graduated + "\r\n"
, "Student Alumni Record", JOptionPane.INFORMATION_MESSAGE );
}
}
Thursday, August 25, 2022
Addition of Four Numbers Using Pointers in C
A simple program to ask the user to give four numbers and then the program will compute the sum of the four numbers using pointers 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.
Wednesday, August 24, 2022
Inverted Triangle in Java
A simple program to display inverted triangle image using Java 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.
Tuesday, August 23, 2022
Pointer Address in C++
A simple program to demonstrate how to declare and use pointers in 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 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.
Monday, August 22, 2022
Sum and Product of Two Numbers in C
Machine Problem
Create and Design a program that will ask the user to give two numbers and then the program will compute the sum and product of the given numbers 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
// add_product.c
// Author : Jake Rodriguez Pomperada,BSCS,MAED-IT
// Date : November 11, 2018 Sunday 11:02 PM
// Location : Bacolod City, Negros Occidental
// Tool : Dev C++ Version 5.11
// Website : http://www.jakerpomperada.com
// Email : jakerpomperada@jakerpomperada.com
#include <stdio.h>
int main()
{
int a=0,b=0,sum=0,product=0;
system("COLOR F0");
printf("\n\n");
printf("\tSum and Product of Two Numbers in C");
printf("\n\n");
printf("\tGive First Number : ");
scanf("%d", &a);
printf("\n");
printf("\tGive Second Number : ");
scanf("%d", &b);
// Compute the sum and product
sum = (a+b);
product = (a*b);
printf("\n");
printf("\tThe sum of %d and %d is %d.",a,b,sum);
printf("\n\n");
printf("\tThe product of %d and %d is %d.",a,b,product);
printf("\n\n\n");
printf("\tEND OF PROGRAM");
printf("\n\n");
}