create a program that will ask the user for number of chicken wings
Answers
Answered by
1
Answer:
import java.util.Scanner;
class CHICKENWINGS
{
public static void main(String args[])
{
Scanner sc= new Scanner();
System.out.println("Please enter number of chicken wings:");
int cw=sc.nextInt();
//cw is the number of chicken wings.
}
}
Explanation:
Similar questions