Thursday, April 23, 2020

Odd Even Number Checker Using if-else in Python


Write a program using an if-else statement to ask the user to input a number, and then, the program will check if the given number is an even or an odd number, and display the result on the screen.

 I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/


Program Listing


def my_program():
   print()
   print("\tODD AND EVEN NUMBER CHECKER")
   print()
   num_val = int(input("\tGive a Number : "))
   print()
   if (num_val % 2 == 0):
       print("\tThe given number %d is an EVEN number" % num_val)
   else:
       print("\tThe given number %d is an ODD number" % num_val)
   print();
   repeat = input('\tDo you want to continue ? (Y/N) : ')

   if repeat.upper() == "N":
       print()
       print("\tEND OF PROGRAM")
       quit
   if repeat.upper() == "Y":
       my_program()
if __name__ == '__main__':
       my_program()


Leap Year Checker in Python


Write  a program that will ask the user to input a year and then, the program will check if the given year is a leap year or not a leap year, and display the result on the screen.


 I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing



def my_program():
   print()
   print("\tLEAP YEAR CHECKER")
   print()
   year = int(input("\tGive a Year: "))
   print()
   if (year % 4) == 0:
       if (year % 100) == 0:
           if (year % 400) == 0:
               print("\t{0} is a leap year".format(year))
           else:
               print("\t{0} is not a leap year".format(year))
       else:
           print("\t{0} is a leap year".format(year))
   else:
       print("\t{0} is not a leap year".format(year))
   print();
   repeat = input('\tDo you want to continue ? (Y/N) : ')

   if repeat.upper() == "N":
       print()
       print("\tEND OF PROGRAM")
       quit
   if repeat.upper() == "Y":
       my_program()
if __name__ == '__main__':
       my_program()

Bigger Number Program in Python

I wrote this simple program that will ask the user to give two numbers and then the program will check which of the two numbers has the bigger numerical value using if else statement in Python programming language.

 I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tBigger Number Program")
print()
a,b=input("\tGive Two Numbers : ").split()
a = int(a)
b = int(b)
print()
if a > b:
  print("\t{0} is much bigger than {1}." .format(a,b))
else:
  print("\t{0} is much bigger than {1}.".format(b,a))
print()
print("\tEnd of Program")
print()

Highest of Three Numbers in Python


Write a program that will ask the user to input three numbers and then, the program will check which of the three numbers have the highest numerical value, and display the result of the  screen.
I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tHIGHEST NUMBER CHECKER");
print()
n1  = int(input('\tGive value number 1 :  '))
n2  = int(input('\tGive value number 2 :  '))
n3  = int(input('\tGive value number 3 :  '))
print()
if n1 >= n2 and n1 >= n3 :
    print("\tThe highest number is %d." % n1);
if n2 >= n1 and n2 >= n3  :
   print("\tThe highest number is %d." % n2);
if n3 >= n1 and n3 >= n2 :
   print("\tThe highest number is %d." % n3);
print();
print("\tEND OF PROGRAM");
print("\n\n");

Odd and Even Number Checker in Python


Write a program that will ask the user to input a number and then, the program will check if the given number is an odd or even number, and display the result on the screen.
 I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing



print()
print("\tODD AND EVEN NUMBER CHECKER");
print()
num_given  = int(input('\tGive a number :  '))
print()
 if (num_given % 2 == 0) :
    print("\tThe given number %d is an EVEN number." % num_given)
 if (num_given % 2 == 1) :
    print("\tThe given number %d is an ODD number." % num_given)
 print();
print("\tEND OF PROGRAM");
print("\n\n");

Legal Age Checker in Python


Write a program that will ask the user to input their age and then, the program will check and determine if the given age is already an adult or still a minor, and display the result on the screen.
I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tLEGAL AGE CHECKER");
print()
age  = int(input('\tWhat is your age? :  '))
print()
 if (age >=18) :
    print("\tYou are already an ADULT at the AGE of %d." % age)
 if (age<18) :
    print("\tYou are still a MINOR at the AGE of %d." % age)
 print();
print("\tEND OF PROGRAM");
print("\n\n");

Positive and Negative Number Checker in Python


Write a program that will ask the user to input a number and then, a program will check if the given number is a positive or a negative number, and display the result on the screen.
I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tPOSITIVE AND NEGATIVE NUMBER CHECKER");
print()
num_value  = int(input('\tGive a Number :  '))
print()
 if (num_value >=0) :
    print("\tThe given number %d is a Positive Number."% num_value)
 if (num_value<0) :
    print("\tThe given number %d is a Negative Number." % num_value)
 print();
print("\tEND OF PROGRAM");
print("\n\n");

Simple Payroll Program in Python


Write and design a payroll program that will ask the user how many days an employee work in the company and then, the salary rate per day. In addition, the program also will ask the user the SSS, Pag-IBIG, BIR, and PHILHEALTH contributions. The payroll program will compute the gross salary, total deductions, and net salary and display the result on the screen.


I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tSIMPLE PAYROLL PROGRAM");
print()
days = float(input('\tHow Many Days Work : '));
rate = float(input('\tRate Per Day       : '));
# Solving Gross Salary Here
solve_gross = (days * rate);
print();
print("\tGross Salary            : PHP  {:8.2f} " .format(solve_gross));
print();
sss = float(input('\tSSS Contribution               : PHP  '));
pag_ibig = float(input('\tPAG-IBIG Contribution          : PHP '));
bir = float(input('\tBIR Contribution               : PHP  '));
philhealth= float(input('\tPHILHEALTH Contribution        : PHP '));
# Solving Total Deductions and Net Salary Here *
total_deductions = (sss + pag_ibig + bir + philhealth);
solve_net_salary = (solve_gross - total_deductions);
print();
print("\tDisplay Payroll Results");
print();
print("\tGross Salary     : PHP  {:2.2f}.".format(solve_gross));
print("\tTotal Deductions : PHP  {:2.2f}.".format(total_deductions));
print();
print("\t==============================================");
print();
print("\tNet Salary       : PHP  {:2.2f}.".format(solve_net_salary));
print();
print("\tEND OF PROGRAM");

Average Grade Solver in Python


Write a program that will ask the student to input the Prelim, Midterm, and Final grades and then, the program will compute the grade and display the result on the screen. The percentage on every grading period are the following: For Prelim, it will be 20%, Midterm will be 30%, and Finals will be 50%.


I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tAverage Grade Solver");
print()
subject = input('\tWhat is the subject? ');
prelim = float(input('\tGive Prelim Grade : '));
midterm = float(input('\tGive Midterm Grade : '));
final = float(input('\tGive Final Grade : '));
solve_grade= (prelim * 0.20) + (midterm * 0.30) + (final * 0.50);
print();
print("\t===== DISPLAY RESULTS =====");
print();
print("\tThe subject is" ,subject,'.');
print();
print("\tThe subject grade is {:2.2f}".format(solve_grade));
print();
print("\tEND OF PROGRAM");


Money Denomination Determiner in Python


Create and design a program that will ask the amount in PHP from the user and then, the program will count how many one thousand, five hundred, two hundred,  one hundred, fifty, and twenty peso bills based here in the Philippines.


I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, 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.

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, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/



Program Listing


print()
print("\tMoney Denomination Determiner");
print()
amt = int(input('\tGive the amount of money : PHP '));
# Conversion start here *
thousand = amt // 1000;
amt = amt % 1000;
five_hund = amt // 500;
amt = amt % 500;
two_hundreds = amt // 200;
amt = amt % 200;
hundreds = amt // 100;
amt = amt % 100;
fifty = amt // 50;
amt = amt % 50;
twentys = amt // 20;
amt = amt % 20;
print();
print("\t===== DISPLAY RESULT =====");
print();
print("\tNumber of 1000 Pesos notes: %d." % thousand);
print("\tNumber of 500 Pesos notes: %d." % five_hund);
print("\tNumber of 200 Pesos notes: %d." % two_hundreds);
print("\tNumber of 100 Pesos notes: %d." % hundreds);
print("\tNumber of 50 Pesos notes: %d." % fifty);
print("\tNumber of 20 Pesos notes: %d."% twentys);
print();
print("\tEND OF PROGRAM");
print("\n\n");