/* (Start of Program head Note) * Copyright and version Statement of the program (c) 2011, the Computer College of Yantai University * All rights reserved. * File Name: * Author: Shangpeng * Date of Completion: September 15, 2012 * Version number: 001 * for tasks
And the description of the solution method * Input Description: * Problem Description: Known students have number, name, sex, age, height, weight six basic information, in turn, input the student information from the keyboard, finished output of the health details. * Program Output: * Program Header comment End/public class Student {/** * @param args/public static void main (string[] args) {/
*int num;
char name;
char sex;
int age;
Double height;
Double weight;*/System.out.println ("Please enter Student's school number:");
String str1= console.readline ();
System.out.println (STR1);
System.out.println ("Please enter the student's name:");
String Str2=console.readline ();
System.out.println (STR2);
System.out.println ("Please enter the student's gender:");
String Str3=console.readline ();
System.out.println (STR3);
System.out.println ("Please enter the student's Age:");
String Str4=console.readline ();
System.out.println (STR4);
System.out.println ("Please enter the student's height:"); String str5=Console.ReadLine ();
System.out.println (STR5);
System.out.println ("Please enter the student's weight:");
String Str6=console.readline ();
System.out.println (STR6);
System.out.println ("School Number name sex age height weight");
System.out.println (str1+ "+str2+" "+str3+" "+str4+" "+str5+" "+STR6");
}
}