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() { | |
| int cali=6; | |
| int calii=4; | |
| int caliii=10; | |
| double resultado=(cali+calii+caliii)/3; | |
  
    
      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
    
  
  
    
  | import 'dart:math' as math; | |
| void main() { | |
| //area de un circulo | |
| double r=5; | |
| double a; | |
| double p; | 
  
    
      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(){ | |
| //Area del Triangulo=(b*h)/2 | |
| double b=10; | |
| double h=15; | |
| double area=(b*h)/2; | |
| print("El area del triangulo es: $area") | |
| } | 
  
    
      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(){ | |
| //Area de un cuadrado = lado*lado | |
| int lado = 10; | |
| int area = lado * lado; | |
| print("El area del cuadrado es $area"); | |
| //Area del circulo = pi*Radio^2 | |
| int radio = 44; | 
  
    
      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() { | |
| final numero1 = 5; | |
| final numero2 = 2; | |
| var suma = numero1 + numero2; | |
| var resta = numero1 - numero2; | |
| var multiplicacion = numero1 * numero2; | |
| var division = numero1 / numero2; | |
| var divisionEntero = numero1 ~/ numero2; | |
| var resto = numero1 % numero2; | 
NewerOlder