This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
namespace Trabalho_Bingo |
This file contains 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
Class Triangulo | |
{ | |
int lado1, lado2, lado3; | |
static int cont=0; | |
Public Triangulo(int l1, int l2, int l3) | |
{ | |
lado1 = l1; | |
lado2 = l2; | |
lado3 = l3; | |
cont++; |