I think you are asking if you can read both height and weight at the same time:
// C equivalent printf ("Enter height (cm) and weight (kg): "); scanf ("%d %d\n", &h, &w);
Yes, there are several alternatives.
Perhaps the easiest is to use Console.ReadLine () (how you do it) and parse the line.
You can also try several "Console.Read ()" (one for each argument).
source share