I can't seem to find what I'm doing wrong. I looked in my text book to see if I could find the reason I'm getting this error with no luck. Any help would be greatly appreciated!

Full code (a short program)
CODE
import java.util.*;
public class Convert
{
static Scanner console = new Scanner(System.in);
static final double cmToInches = 2.54;
public static void main (String[] args)
{
//declare variables
int yourInches, yardLength, yourLength, yourFeet, remInches;
double inchLength, feetLength;
//output prompt and get user input
System.out.print("Please enter a length in centimeters: ");
System.out.flush();
yourLength = console.nextInt();
//convert centimeters to nearest inch
inchLength = yourLength/cmToInches;
yourInches = round (inchLength);
//output the results in whole inch
System.out.println();
System.out.println("Your centimeters converted to the nearest whole inch is "
+ yourInches);
//complete remaining conversions
System.out.println();
yardLength = yourInches/36;
yourYards = yardLength;
feetLength = ((yourInches/36) - yardLength)*3;
remInches = yourInches - ((yourFeet*12) + (yourYards*36));
//output final conversion results
System.out.println("Your inches equals: " + yourYards + " yard(s), " + yourFeet +
" feet(foot), and " + remInches + " inches.");
}
}
The first compile error starts with this line:
CODE
yourInches = round (inchLength);
and the error says "cannot find symbol".