- package lab3;
- import java.util.*;
- public class Main
- {
- try (//taking inputs like name, price from the user
- float items_weight= sc.nextInt();
- float price = sc.nextFloat();
- //calculating weight_in_pound
- float weight_in_pound = items_weight/16;
- //calculating total_price
- float total_amt = price*weight_in_pound;
- //replacing spaces in names with dot .
- user_name = user_name.replace(" ", ".");
- //generating random confirmation code
- int random_num = random.nextInt(90) + 10;
- //printing the results
- }
- }
- }