Skip to content

Instantly share code, notes, and snippets.

@hamoungh
Created September 25, 2014 13:45
Show Gist options
  • Save hamoungh/8d0d8b3dafc8fb192ab1 to your computer and use it in GitHub Desktop.
Save hamoungh/8d0d8b3dafc8fb192ab1 to your computer and use it in GitHub Desktop.
class question4
{
public static void main ( String[] args )
{
int unitCost = 8;
int items = 5;
System.out.println("total cost: " + (unitCost * items) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment