14/05/2011, 18:06
|
| | Fecha de Ingreso: mayo-2011
Mensajes: 1
Antigüedad: 13 años, 8 meses Puntos: 0 | |
Respuesta: Tengo Este Codigo,pero Tengo 2 Errores D Tipo Misplaced Else yo tengo el mismo problema, el codigo que tengo es este.
void __fastcall TForm1::Button4Click(TObject *Sender)
{
int x;
int y;
x = StrToInt(Edit1->Text);
y = StrToInt(Edit2->Text);
if ( y== 0){
MessageDlg("Error División entre 0", mtWarning, TMsgDlgButtons () << mbOK, 0);
else {
y = x / y;}
}
Edit3->Text = IntToStr(y);
} |