Skip to content

Instantly share code, notes, and snippets.

View jfabiosan's full-sized avatar
🎯
Focused

Fábio jfabiosan

🎯
Focused
View GitHub Profile
@jfabiosan
jfabiosan / main.dart
Last active September 8, 2022 02:36
Operadores
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;