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, January 13, 2021
Cube a Number in C
Machine Problem in C
Write a program that will ask the user to give a number and then the program will compute it cube number equivalent.
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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
/* cube_a_number.c
Machine Problem in C
Write a program that will ask the user to give a number
and then the program will compute it cube number equivalent.
Mr. Jake R. Pomperada,MAED-IT, MIT
www.jakerpomperada.com
www.jakerpomperada.blogspot.com
jakerpomperada@gmail.com
Bacolod City, Negros Occidental, Philippines
*/
#include<stdio.h>
int main()
{
int number=0, cube_number=0;
printf("\n\n");
printf("\tCube a Number in C");
printf("\n\n");
printf("\tEnter an Integer Number : ");
scanf("%d", &number);
cube_number = (number * number * number);
printf("\n\n");
printf("\tThe Cube of a given number %d is %d.",number, cube_number);
printf("\n\n");
printf("\tEnd of Program");
}
Tuesday, January 12, 2021
Difference of Two Numbers Using Modern C++
Machine Problem in C++
Write a program to ask the user to give two numbers and then the program will solve the difference of two numbers on the screen using Modern C++.
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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
// difference_two.cpp
//
// Machine Problem in C++
// Write a program to ask the user to give two numbers
// and then the program will solve the difference of two
// numbers on the screen using Modern C++.
//
// Mr. Jake R. Pomperada,MAED-IT,MIT
// www.jakerpomperada.com
// www.jakerpomperada.blogspot.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental, Philippines
#include <iostream>
int main()
{
int difference=0,a=0,b=0;
std::cout <<"\n\n";
std::cout <<"\tDifference of Two Numbers Using Modern C++";
std::cout <<"\n\n";
std::cout <<"\t Give First Value : ";
std::cin >> a;
std::cout <<"\t Give Second Value : ";
std::cin >> b;
std::cout <<"\n\n";
difference = (a-b);
std::cout <<"\tThe difference between " << a
<< " and " << b << " is " << difference <<".";
std::cout <<"\n\n";
std::cout <<"\tEnd of Program";
std::cout <<"\n";
}
Monday, January 11, 2021
Two Digits Number Checker Using Modern C++
Machine Problem in Modern C++
Write a program using Modern C++ accept a number then display whether the number is less than two digits or more than two digits.
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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
// two_digits.cpp
// Machine Problem in Modern C++
// Write a program in Modern C++ to accept a number then display
// whether the number is less than two digits or more than two digits.
// Author : Jake Rodriguez Pomperada, MAED-IT, MIT
// Date : January 11, 2020
// Website : www.jakerpomperada.com / www.jakerpomperada.blogspot.com
// Email : jakerpomperada@gmail.com
// Place : Bacolod City, Negros Occidental, Philippines
#include <iostream>
int main()
{
int num=0;
std::cout <<"\n\n";
std::cout <<"\tTwo Digits Number Checker Using Modern C++";
std::cout <<"\n\n";
std::cout <<"\tEnter a Number : ";
std::cin >> num;
std::cout <<"\n\n";
if (num < 0) {
std::cout <<"\t " << num <<
" is a negative number kindly give a positive number.";
} else if(num >= 0 && num <= 9 )
{
std::cout <<"\t " << num <<" is less than two digits.";
}
else if (num >=10 && num <= 99 )
{
std::cout <<"\t " << num << " has two digits.";
}
else
{
std::cout <<"\t " << num << " is more than two digits.";
}
std::cout <<"\n\n";
std::cout <<"\tEnd of Program";
std::cout <<"\n\n";
return 0;
}
Two Digits Number Checker in C
Machine Problem in C
Write a program in C accept a number then display whether the number is less than two digits or more than two digits.
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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
/* two_digits.c
Machine Problem in C
Write a program in C accept a number then display
whether the number is less than two digits or more than two digits.
Author : Jake Rodriguez Pomperada, MAED-IT, MIT
Date : January 11, 2020
Website : www.jakerpomperada.com
Email : jakerpomperada@gmail.com
Place : Bacolod City, Negros Occidental, Philippines
*/
#include <stdio.h>
int main()
{
int num=0;
printf("\n\n");
printf("\tTwo Digits Number Checker in C");
printf("\n\n");
printf("\tEnter a Number : ");
scanf("%d",&num);
printf("\n\n");
if(num >= 0 && num <= 9 )
{
printf("\t%d is less than two digits.",num);
}
else if (num >=10 && num <= 99 )
{
printf("\t%d has two digits.",num);
}
else
{
printf("\t%d is more than two digits.",num);
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
return 0;
}
Sunday, January 10, 2021
Multiply and Division of Two Numbers in JavaScript
I wrote this simple program to ask the user to give two numbers and then the program will compute the product and quotient of two numbers using JavaScript 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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Computer Networking Services in Bacolod City
Need IT Service for your Home and Office Networking needs here in Bacolod City?
Look no more I offer my services in Computer Networking at a very affordable cost, full technical support, and fast, reliable service.
Services Offered
* Home Computer Networking
* Small Business PC Networking Setup and Configuration
* Linux and Windows Server Setup and Configuration
* Internet Networking
* File and Printer Networking Setup and Configuration
* Computer Network Troubleshooting and Repair
* Computer Repair and Maintenance
Jake R. Pomperada
You can contact me at my mobile number 09173084360
my email address at jakerpomperada@gmail.com
My Facebook Address is https://www.facebook.com/profile.php?id=100009212511791
Thank you so much
Friday, January 8, 2021
US Dollar to Philippine Peso in PHP
I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value 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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Thursday, January 7, 2021
US Dollar To Philippine Peso in C#
I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value 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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
US Dollar To Philippine Peso in Visual FoxPro
I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value using Visual Foxpro
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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.
Program Listing
Compute Button
result = ROUND(VAL(thisform.text1.Value) * 48.03,2)
thisform.text2.value = result
US Dollar To Philippine Peso in Visual Basic 6
I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value.
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.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking, and Arduino Project development at a very affordable price. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com
If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.
Your support on my channel is highly appreciated.
Thank you very much.