النسخة الثانية من السؤال مطلوب فيها خصم 35% .. فتتغير الخوارزمية الى:
double originalPrice = console.nextDouble();
double discount = originalPrice * 0.35;
double finalPrice = originalPrice - discount;
System.out.println("The price after the 35.0% discount is=" + finalPrice + " SR");