This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
//operacoes aritmeticas | |
int v1 = 2; | |
double v2 = 30.8; | |
int v3 = 7; | |
double result1 = v1 + v2; | |
double result2 = v1 * v2; | |
int result3 = v3 ~/ v1; | |
double result4 = v3 / v1; |