I guess a lot depends on how you structure your programming, and if you are including comments in your calculation.
You can structure simple if statements to be different line lengths:
1) one line
if(argument)do this;
2) four lines
if(argument)
{
do this;
}
There are several other variations as well.
It's hard to omit comment count from a line count unless you have some way to remove comments.
intermixed sounds like a lot of checks and balances.
I'll throw it up there kind of high.
235,467