id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

pais@kinetigram.com logic04 > L41_cigarParty
prev  |  next  |  chance

APCS Logic 4, Problem 1. When squirrels get together for a party, they like to have cigars. A squirrel party is successful when the number of cigars is between 40 and 60, inclusive. Unless it is the weekend, in which case there is no upper bound on the number of cigars. Return true if the party with the given values is successful, or false otherwise.


L41_cigarParty(30, false) → false
L41_cigarParty(50, false) → true
L41_cigarParty(70, true) → true

...Save, Compile, Run (ctrl-enter)

public boolean L41_cigarParty(int cigars, boolean isWeekend) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 200

Copyright Nick Parlante 2017 - privacy