Question: Integers tableCount and inviteCount are read from input. If tableCount is 1 2 or less, then assign inviteCount with inviteCount plus 3 5 . public

Integers tableCount and inviteCount are read from input. If tableCount is 12 or less, then assign inviteCount with inviteCount plus 35. public class TableInvites {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int tableCount;
int inviteCount;
tableCount = scnr.nextInt();
inviteCount = scnr.nextInt();
/* Your code goes here */
System.out.println(inviteCount);
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!