If Statement to Finite State Machine
* [ ] "IF condition" needs to be altered to satisfy local variable constraints
## If-Else
```c
if( a > b && a > c) { // if else statement
result = a;
} else {
result = c;
}
```
## If Alone
```c
if( a > b && a > c) { // if else statement
result = a;
}
```
## If-Else If-Else
```c
if( a > b && a > c) { // if else statement
result = a;
} else
if( b > a && b > c ){
result = b;
} else
if( b > a && b == c ){
result = c;
} else {
result = d;
}
```
## If-Else If
```c
if( a > b && a > c) { // if else statement
result = a;
} else if( b > a && b > c ){
result = b;
}
```
## If-Else Nested
```c
if( a > b && a > c) { // if else statement
if( b > c) { // if else statement
result = a;
} else {
result = b;
}
} else {
result = c;
}
```
issue