Siguiente número par
Crear una aplicación en Visual C++ a la que se le pase un número en un TextBox.
La función deberá mostrar el siguiente número par.
Ejemplo:
dato_teclado = 3
siguiente_par =4
dato_teclado = 8
siguiente_par = 10
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Código Fuente
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
private: System::Void bt_sig_par_Click(System::Object^ sender, System::EventArgs^ e)
{ int dato_teclado, resultado; dato_teclado = Convert::ToInt32 (this->tb_dato->Text); if ((dato_teclado % 2) == 0) { resultado = dato_teclado + 2; } else { resultado = dato_teclado + 1; } this->et_resultado->Text = Convert::ToString(resultado); }
No hay comentarios:
Publicar un comentario