Posts

Tax Calculator App

                                      Tax Calculator App Problem Statement: Vaibhav has just completed his first year of Job. He is really happy about it but at the same time he needs to pay taxes to government on what he has earned in his last one year. Vaibhav found that all of his friends were facing the same difficulty in calculating the tax.   He felt the need of a program where he can enter all of his friend’s name along with their income one by one and the program will calculate the tax and print the liable taxes of all of his friends.   JAVA code package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { System. out .println( " Tax Calculator App " ); System. out .println( " ------WELCOME------" ); long MyCT = 0 ; int j= 0 ; System. out .println( "Enter tota...