How to use division in monkey C?

I am building a watch face and I would like to use the division in the creation of an arc. However, I am not able to print the division result, only the absolute value of the division. For example, I am storing the division result into xResult:

```

var xResult=60*1/100;

System.println("xResult "+xResult);
```
However, the xResult is 0 when printed to the console. I want the variable to be 0.6, but I cannot find a way to make it show the real value, I am a beginner in this programming language, so sorry if this is an inappropriate question.
Thanks.