Created
September 25, 2014 13:45
-
-
Save hamoungh/8d0d8b3dafc8fb192ab1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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