Computer Science, asked by rithika39, 11 months ago

write a java program to store in three variables: your weight, height in feet and your shoe size. declare the variable and assign the values in the body of the program

Answers

Answered by aditya1984
2

public static void main( String[] args ) {
Scanner keyboard = new Scanner(System.in);

double myweight, myheight, myshoesz;

myweight=65;
myheight=5.12;
myshoesz=9;

}
Similar questions