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
Friday, October 9, 2020
Leap Year Checker in Visual Basic NET
A simple program that I wrote using Microsoft Visual Basic NET that will ask the user to give a year and then the program will check if the given year is a leap year or not a leap year.
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.
Program Listing
Leap Year Checker in C++
A program that I wrote using C++ to ask the user to give a year and then the program will check if the given year is a leap year or not a leap year.
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.
US Dollar To Philippine Peso Converter
Write a program to convert the US
Dollar ($) into Philippine Peso. Assume that one US Dollar is equivalent to 50.74 Pesos. Then
display the result on the screen Using C++ 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.
Program Listing
Thursday, October 8, 2020
Leap Year Checker in C
A program that I wrote to ask the user to give a year and then the program will determine whether the given year is a leap year or not a leap year.
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.
Program Listing
Leap Year Checker in Pascal
A simple program that I wrote using FreePascal as my compiler to ask the user to give a year and then the program will check if the given year is a leap year or not.
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.
Program Listing
Wednesday, October 7, 2020
Even and Odd Number Checker in C++
A simple program that I wrote using C++ to ask the user to give a number and then the program will check if the given number is an odd or even number.
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.
Program Listing
// Author : Jake Rodriguez Pomperada,MAED-IT, MIT
// Date : October 7, 2020 9:55 PM
// Website : www.jakerpomperada.com / www.jakerpomperada.blogspot.com
// Email : jakerpomperada@gmail.com
#include <iostream>
using namespace std;
int main() {
int num=0;
cout << "\n\n";
cout << "\tEven and Odd Number Checker in C++";
cout << "\n\n";
cout << "\tGive a Number : ";
cin >> num;
cout << "\n\n";
if(num % 2 == 0)
cout<<"\tThe given number "<<num<<" is an even number.";
else
cout<<"\tThe given number "<<num<<" is an odd number.";
cout << "\n\n";
cout << "\tEnd of Program";
cout << "\n\n";
}
Leap Year Checker in Visual FoxPro Version 2
A program that I wrote using Microsoft Visual Foxpro will ask the user to give a year and then the program will check and determine whether the given year by the user is a leap year or not a leap year.
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.
Tuesday, October 6, 2020
Area of the Circle in Visual Foxpro Version 2.0
This is my second version of area of the circle solver using Microsoft Visual Foxpro I just improve the code much shorter and efficient compared to version one I hope you will find my work useful.
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.