Answered step by step
Verified Expert Solution
Question
1 Approved Answer
i need i java programming public class Kite { public static void main(String [] args) { int longSide = 12; int shortSide = 10; int
i need i java programming
public class Kite { public static void main(String [] args) { int longSide = 12; int shortSide = 10; int perimeter;
perimeter = 2 * longSide + * shortSide;
System.out.printl("sides: " longSide, ", ", shortSide) System.out.println("perimeter: " * perimeter); } }
The correct output of the program is:
Sides: 12 10 Perimeter: 44
End the last output with a newline.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started