Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Last active October 31, 2022 07:15
Show Gist options
  • Star 35 You must be signed in to star a gist
  • Fork 26 You must be signed in to fork a gist
  • Save udacityandroid/a00cf27969aea4ba7848 to your computer and use it in GitHub Desktop.
Save udacityandroid/a00cf27969aea4ba7848 to your computer and use it in GitHub Desktop.
Android Development for Beginners : Practice Set 2 Shopping List 2 Example
int raspberryPrice = 5;
display1("1 box: $" + raspberryPrice);
raspberryPrice = 10;
display2("2 boxes: $" + (raspberryPrice));
display3("3 boxes: $" + (raspberryPrice * 3));
@Ashish538
Copy link

katherine is best

@MarvUkazu
Copy link

the goal wasn't accomplished and it displayed

1 box: $5
2 boxes: $10
3 boxes: $30

I wrote just the price without adding the number of boxes

1 box: $5
2 boxes: $10
3 boxes: $30

This is the answer an not :

$5
$10
$30

or

5
10
30

@AjayThenuan-CodingQuiz
Copy link

Great it Works Totally guys

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment