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
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