in reply to Please Help! This is a class assignment given to me.
One way to begin attacking a problem is to just start writing down obvious (update: even rather trivial) elements of the problem and general relationships between those elements. Even if it doesn't seem immediately relevant, just write it down. As you begin to see more relationships, write those down (or at least keep them in mind). AnonyMonk has started the process here.
What else springs to mind?
Again, as long as they're true, don't worry if some of the statements don't seem immediately relevant or useful; it's easy to delete text. Work on refining relationships that seem useful: exactly what is the relationship of the total cost to the per-item cost and the total made or sold? Continue on to a solution!#!/usr/bin/perl use strict; use warnings; my $sold = 10; my $cost = 250; my $price = 300; my $discount = 0.10; my $total_cost = $cost ... $sold ...; my $discounted_price = $price ... $discount ...; my $total_sales = $discounted_price ... $sold ...; my $profit = $total_sales ... $total_cost ...;
Give a man a fish: <%-{-{-{-<
|
|---|