Billing Program Java
import java.util.Scanner; public class SimpleBillingProgram { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); // Variables for shop details String shopName; String billNumber; double discountPercent; double taxPercent; // Get shop details System.out.print("Enter shop name: "); shopName = scanner.nextLine(); System.out.print("Enter bill number: "); billNumber = scanner.nextLine(); System.out.print("Enter discount percentage: "); discountPercent = scanner.nextDouble(); System.out.print("Enter tax percentage: "); taxPercent...