LexarG56

All generations.

generate functionFri, 16 Jun 2023

Generar un menú que tenga las opciones: 1. Sumar 2. Restar 3. Multiplicar 4. Dividir 5. Salir

import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int number1; int number2; int result; int option; System.out.println("Please select an option (1-5):"); System.out.println("1. Add numbers"); System.out.println("2. Substract numbers"); System.out.println("3. Multiply numbers"); System.out.println("4. Divide numbers"); System.out.println("5. Exit\n"); System.out.println("Option: "); option = sc.nextInt(); switch (option) { case 1: System.out.println("Addition"); System.out.println("Enter first integer: "); number1 = sc.nextInt(); System.out.println("Enter second integer: "); number2 = sc.nextInt(); result =

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed haga que un boton pueda eliminar un dato registrado tipo codigo de una base de datos

void accionBoton(ActionEvent evt) { String nombre = evt.getActionCommand(); if(nombre.equals("eliminar")) { int fila = t.getSelectedRow(); int id = (int) t.getValueAt(fila, 0); if(fila > -1) { try { String sSQL = "DELETE FROM `producto` WHERE `producto`.`id` = ?"; PreparedStatement pst = cn.prepareStatement(sSQL); pst.setInt(1, id); pst.executeUpdate(); JOptionPane.showMessageDialog(null, "Eliminado"); limpiarCampos(); setFilas(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Error al Eliminar" + e); } } else { JOptionPane.showMessageDialog(null, "No selecciono ninguna fil

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un dato registrado de una base de datos con solo el int codigo.

private void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { String codigo = txtCedula.getText(); int codigo2 = Integer.parseInt(codigo); String sql = "DELETE FROM clientes WHERE codigo=codigo2"; try { PreparedStatement pst = cn.prepareStatement(sql); int n = pst.executeUpdate(); if (n > 0) { JOptionPane.showMessageDialog(null, "Dato eliminado"); limpiar(); } } catch (SQLException ex) { Logger.getLogger(Clientes.class.getName()).log(Level.SEVERE, null, ex); } }

Java
View
generate functionSun, 18 Jun 2023

Crear un menu con el boton de crear una cita de soporte tecnico.

Script function supportMenu(name) { // this is where we will build the support menu let menu = ""; // this is where we will create the contact info let contactInfo = ""; // Create the header of the menu menu = "Hello " + name + ", what can we do for you? \n"; menu += "1. Can you make the text bigger?\n"; menu += "2. I can't save my file.\n"; menu += "3. Nothing, I'm just bored\n"; // Create the contact info contactInfo = "\n\nPlease contact us at support@greenfoxacademy.com for further assistance."; // Add the contact info to the menu menu += contactInfo; return menu; }

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

def add(a, b): return a + b def subtract(a, b): return a - b def multiply(a, b): return a * b def divide(a, b): return a / b def modulus(a, b): return a % b def power(a, b): return a ** b def main(): while True: option = str(input('\n\nSelect an option:\n1) Add\n2) Subtract\n3) Multiply\n4) Divide\n5) Modulus\n6) Power\n7) Exit\n\n')) if option == '1': a = int(input('\nPlease enter first number: ')) b = int(input('\nPlease enter second number: ')) print('\nThe result is:', add(a, b)) elif option == '2': a = int(input('\nPlease enter first number: ')) b =

Java
View
generate functionSun, 18 Jun 2023

Crear un menu con el boton de crear una cita de soporte tecnico.

Script const createSupportTicket = () => { // 1. create the div element const supportTicketDiv = document.createElement('div'); supportTicketDiv.setAttribute('class', 'support-ticket'); // 2. Create the elements inside the div element const title = document.createElement('h3'); title.appendChild(document.createTextNode('Soporte de Tecnico')); const description = document.createElement('p'); description.appendChild(document.createTextNode('Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla auctor tellus at dui porttitor porta')); const delBtn = document.createElement('button'); delBtn.appendChild(document.createTextNode('Eliminar')); delBtn.setAttribute('class', 'btn btn-del-ticket'); const closeBtn = document.createElement('button'); closeBtn.appendChild(document.create

Java
View
generate functionWed, 19 Jul 2023

Como crear un metodo para consultar en una tabla de una base de datos

public void consultar(String nombre) { try { //create connection Class.forName(driver); Connection conexion = DriverManager.getConnection(url, sqlUser, sqlPassword); Statement st = conexion.createStatement(); //create query String sql = "SELECT * FROM usuario WHERE nombre = '" + nombre + "'"; ResultSet rs = st.executeQuery(sql); //print result while (rs.next()) { System.out.println(rs.getString("nombre")); } //close connection st.close(); } catch (Exception e) { System.out.println("Error: " + e); } }

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un dato registrado de una base de datos con solo el int codigo.

public void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { Connection con = null; PreparedStatement pst = null; String codigo = txtEliminar.getText(); String sql = "DELETE FROM CLIENTE WHERE CODIGO =" + codigo; try { con = getConnection(); pst = con.prepareStatement(sql); pst.executeUpdate(); JOptionPane.showMessageDialog(null, "Cliente Eliminado con Exito"); } catch (SQLException ex) { Logger.getLogger(Inicio.class.getName()).log(Level.SEVERE, null, ex); } }

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un estudiante de una tabla con solo el codigo del estudiante

private void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: int row = tableEstudiantes.getSelectedRow(); if(row>=0){ int opt=JOptionPane.showConfirmDialog(null, "Eliminar?","Eliminar",JOptionPane.YES_NO_OPTION); if (opt==JOptionPane.YES_OPTION){ String codigo=(tableEstudiantes.getValueAt(row, 0).toString()); try { PreparedStatement pst=cn.prepareStatement("DELETE FROM estudiantes WHERE codigo='"+codigo+"'"); pst.executeUpdate(); mostrarDatos(""); JOptionPane.showMessageDialog(null, "Eliminado"); } catch (SQLException ex) { Logger.getLogger(Ventana.class.getName()).log

Java
View
generate functionThu, 20 Jul 2023

Como puedo agregar que un JComboBox pueda registrar todo el contenido en una tabla de base de datos en un ActionPerformed

public void llenarTabla() { try { DefaultTableModel modelo = (DefaultTableModel) jTable1.getModel(); modelo.setRowCount(0); st = con.conexion(); st = con.conexion().createStatement(); rs = st.executeQuery("SELECT * FROM productos"); while (rs.next()) { modelo.addRow(new Object[]{rs.getString("id"), rs.getString("nombre"), rs.getString("descripcion"), rs.getString("precio")}); } jTable1.setModel(modelo); } catch (SQLException e) { JOptionPane.showMessageDialog(null, "Error al llenar la tabla"); } }

Java
View
generate functionSun, 18 Jun 2023

Hacer que un caso default regrese a la tarea anterior

// Para objetos function foo(input) { // do something with the input return input } var result = foo(123) // result is 123 var result2 = foo() // result is undefined // Para strings function bar(input) { return input || 'default value' } var result3 = bar(123) // result is 123 var result4 = bar() // result is 'default value' // Para numbers function baz(input) { return input !== undefined ? input : 0 } var result5 = baz(123) // result is 123 var result6 = baz() // result is 0

Java
View
generate functionSun, 18 Jun 2023

Crear un menu con el boton de crear una cita de soporte tecnico.

private void btnCrearCitaActionPerformed(java.awt.event.ActionEvent evt) { String c = "", h = ""; try { c = fechaCita.getCalendar().getTime().toString(); h = txtHora.getText().toString(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Seleccione la fecha"); return; } c = c.substring(0, c.length() - 6); h = h.substring(0, h.length() - 3); String date = c + " " + h; int id_usuario = listaUsuarios.get(cmbUsuario.getSelectedIndex()).getId_usuario(); int id_soporte = listaSoportes.get(cmbSoporte.getSelectedIndex()).getId_soporte(); cita = new Cita

Java
View
generate functionFri, 16 Jun 2023

Generar un menú que tenga la opción: Sumar

Script function menu() { var option = prompt("Que operacion desea hacer? \n 1.- Sumar \n 2.- Restar \n 3.- Multiplicar \n 4.- Dividir"); var num1 = prompt("Escribe el primer numero"); var num2 = prompt("Escribe el segundo numero"); if (option === "1") { alert(Number(num1) + Number(num2)); } }

Java
View
generate functionThu, 20 Jul 2023

JComboBox en un ActionPerformed de un boton registrar con 5 model

private void btnRegistrarActionPerformed(java.awt.event.ActionEvent evt) { String modelo=cbxModelo.getSelectedItem().toString(); switch(modelo){ case "Clasico": new VentanaRegistroClasico().setVisible(true); break; case "Deportivo": new VentanaRegistroDeportivo().setVisible(true); break; case "Automatico": new VentanaRegistroAutomatico().setVisible(true); break; case "Familiar": new VentanaRegistroFamiliar().setVisible(true); break; case "Personalizado": new VentanaRegistroPersonalizado().setVisible(true); break; } }

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un estudiante de una tabla con solo el codigo del estudiante

//Algoritmo function btnEliminarActionPerformed(ActionEvent evt){ eliminarEstudiante(codigo) } function eliminarEstudiante(String codigo){ records = getEstudiante(codigo) if(records.length > 0){ //Elimina la primer fila que encuentre delete(records[0]) } } function getEstudiante(String codigo){ //busca en la tabla estudiante y retorna un array de records //select * from estudiante where codigo = codigo return estudianteTable; }

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un dato registrado de una base de datos con solo el int codigo.

public void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: try { PreparedStatement pps = cn.prepareStatement("DELETE FROM registro WHERE codigo="+jTextField_codigo.getText()); pps.executeUpdate(); JOptionPane.showMessageDialog(null,"Dato eliminado"); } catch (SQLException ex) { Logger.getLogger(Ventana.class.getName()).log(Level.SEVERE, null, ex); } }

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

Script function sumar(a,b){ return a + b } function restar(a,b){ return a - b } function multiplicar(a,b){ return a * b } function dividir(a,b){ return a / b } operacion = ""; while(operacion != "salir"){ console.log("Menu") console.log("1.- Sumar") console.log("2.- Restar") console.log("3.- Multiplicar") console.log("4.- Dividir") console.log("5.- Salir") operacion = prompt("Ingresa el numero de la opción") if(operacion == "sumar"){ num1 = Number(prompt("Ingresa el primer número")) num2 = Number(prompt("Ingresa el segundo número")) console.log(sumar(num1,num2)) } else if(operacion == "

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

Script var readlineSync = require('readline-sync'); var options = ['Sumar', 'Restar', 'Multiplicar', 'Dividir', 'Salir']; while (true) { var index = readlineSync.keyInSelect(options, 'Que desea hacer?'); if (options[index] === 'Sumar') { var a = readlineSync.questionInt('Numero 1: '); var b = readlineSync.questionInt('Numero 2: '); console.log('Resultado: ' + (a + b)); } if (options[index] === 'Restar') { var a = readlineSync.questionInt('Numero 1: '); var b = readlineSync.questionInt('Numero 2: '); console.log('Resultado: ' + (a - b)); } if (options[index] === 'Multiplicar') { var a = readlineSync.questionInt('Numero 1: '); var b = read

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed haga que un boton pueda eliminar un dato registrado tipo codigo de una base de datos

void actionPerformed(ActionEvent e) { try { Connection conn = null; Class.forName("com.mysql.jdbc.Driver"); conn = DriverManager.getConnection(url, user, pass); String query = "delete from empleado where id = ?"; PreparedStatement preparedStmt = conn.prepareStatement(query); preparedStmt.setInt(1, id); preparedStmt.execute(); conn.close(); } catch (Exception e1) { System.err.println("Got an exception!"); System.err.println(e1.getMessage()); } }

Java
View
generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

@Override public void actionPerformed(ActionEvent a){ if (a.getSource() == btnRegistrar) { String nombre = txtNombre.getText(); String apellido = txtApellido.getText(); String contraseña = txtContraseña.getText(); String correo = txtCorreo.getText(); String tipo = (String) cmbTipo.getSelectedItem(); if (tipo.equals("Seleccionar Tipo")) { JOptionPane.showMessageDialog(null, "Por favor seleccione un tipo"); } else { Usuario usu = new Usuario(); usu.setNombre(nombre); usu.setApellido(apellido); usu.setContraseña(contraseña); usu.setCorreo(correo); usu.setTipo(tipo); usuarios.

Java
View
generate functionSun, 18 Jun 2023

Hacer un programa que solicite dos números y calcule la suma de los mismos, se debe capturar una posible excepción e informar sobre la misma.

import java.util.Scanner; import java.util.InputMismatchException; public class Main { public static void main(String[] args) { int a, b; Scanner in = new Scanner(System.in); try { System.out.println("Enter a number: "); a = in.nextInt(); System.out.println("Enter another number: "); b = in.nextInt(); System.out.println("Result: " + (a + b)); } catch (InputMismatchException e) { System.out.println("Invalid input!"); System.out.println("Sum not calculated!"); } } }

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

import java.util.Scanner; public class Menu { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int option = 0; int x = 0; int y = 0; int result = 0; boolean exit = false; while (!exit) { System.out.println("1. Sumar"); System.out.println("2. Restar"); System.out.println("3. Multiplicar"); System.out.println("4. Dividir"); System.out.println("5. Salir"); option = scanner.nextInt(); switch (option) { case 1: System.out.println("Ingrese el primer número"); x = scanner.nextInt(); System.out.println("Ingrese el segundo número"); y = scanner.nextInt(); result = x+y; break; case 2: System.out

Java
View
generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { String valor = (String) jComboBox1.getSelectedItem(); String valor2 = (String) jComboBox2.getSelectedItem(); String valor3 = (String) jComboBox3.getSelectedItem(); String valor4 = (String) jComboBox4.getSelectedItem(); String valor5 = (String) jComboBox5.getSelectedItem(); JOptionPane.showMessageDialog(null,"Usted ha seleccionado lo siguiente: \n" + "1: " + valor + "\n2: " + valor2 + "\n3: " + valor3 + "\n4: " + valor4 + "\n5: " + valor5); }

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un estudiante de una tabla con solo el codigo del estudiante

private void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: String codigo = txtCodigo.getText(); int pos = 0; for (int i = 0; i < listaEstudiantes.size(); i++) { if(listaEstudiantes.get(i).getCodigo().equalsIgnoreCase(codigo)){ pos = i; } } listaEstudiantes.remove(pos); JOptionPane.showMessageDialog(this, "Estudiante Eliminado", "Mensaje", JOptionPane.INFORMATION_MESSAGE); mostrarListaElementos(); }

Java
View
generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

// el jComboBox String[] lista = {"Uno", "Dos", "Tres", "Cuatro", "Cinco"}; JComboBox combo = new JComboBox(lista); JButton button = new JButton("registrar"); button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { String selected = (String)combo.getSelectedItem(); System.out.println(selected); } });

Java
View
generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

private void jButtonRegistrarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: int dni = Integer.parseInt(this.jTextFieldDni.getText()); String nombre=this.jTextFieldNombre.getText(); String apellido = this.jTextFieldApellido.getText(); String fechadenacimiento = this.jTextFieldFechaDeNacimiento.getText(); String domicilio = this.jTextFieldDomicilio.getText(); String telefono = this.jTextFieldTelefono.getText(); String email = this.jTextFieldEmail.getText(); String sexo = this.jComboBox1.getSelectedItem().toString(); String estadocivil = this.jComboBox2.getSelectedItem().toString(); String tipodecarga = this.jComboBox3.getSelectedItem

Java
View
generate functionSun, 18 Jun 2023

Crear un menu con el boton de crear una cita de soporte tecnico.

Script function create_menu(){ var body = document.getElementsByTagName('body')[0]; var menu = document.createElement('div'); menu.id = 'menu'; body.appendChild(menu); menu.innerHTML = ` <div class="container"> <div class="row"> <div class="col-12"> <nav class="navbar navbar-expand-lg navbar-light"> <ul class="navbar-nav mr-auto"> <li class="nav-item active"> <a class="nav-link" href="#">Inicio <span class="sr-only">(current)</span></a> </li> <li class="nav-item"> <a class="nav-link" href="#">Citas</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Reportes</a> </li> <li class="nav-item

Java
View
generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

public void Registro() { String producto = (String) boxProducto.getSelectedItem(); String marca = (String) boxMarca.getSelectedItem(); String categoria = (String) boxCategoria.getSelectedItem(); String unidad = (String) boxUnidad.getSelectedItem(); if (txtCodigo.getText().isEmpty()||txtDescripcion.getText().isEmpty()||txtCantidad.getText().isEmpty()||txtPrecio.getText().isEmpty()||txtPrecioCompra.getText().isEmpty()||txtPrecioVenta.getText().isEmpty()) { JOptionPane.showMessageDialog(null, "Campos Obligatorios Vacios"); } else { sql = "INSERT INTO producto (CODIGO, PRODUCTO, MARCA, CATEGORIA, DESCRIPCION, EXISTENCIA, UNIDAD, PRECIO_COMPRA, PRECIO_VENTA, PRECIO_

Java
View
generate functionThu, 20 Jul 2023

JComboBox con 5 model en un ActionPerformed para un boton registrar

private void btnRegistrarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: String nombre = txtNombre.getText(); String apellido = txtApellido.getText(); String direccion = txtDireccion.getText(); String telefono = txtTelefono.getText(); String email = txtEmail.getText(); String tipoSangre = cmbTipoSangre.getSelectedItem().toString(); String sexo = ""; if (rbtHombre.isSelected()) { sexo = "Hombre"; } else if (rbtMujer.isSelected()) { sexo = "Mujer"; } String fechaNacimiento = txtFechaNacimiento.getText(); Persona p = new Persona(nombre, apellido, direccion, telef

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed del boton eliminar, que se pueda eliminar un dato registrado tipo int en una base de datos

private void eliminarActionPerformed(java.awt.event.ActionEvent evt) { try{ String sql = "DELETE FROM datos WHERE id=?"; PreparedStatement pst = con.prepareStatement(sql); pst.setInt(1,Integer.parseInt(id.getText())); pst.execute(); JOptionPane.showMessageDialog(null,"Eliminado exitosamente"); }catch(Exception e){ JOptionPane.showMessageDialog(null,"No se ha podido eliminar"); } mostrarDatos(); }

Java
View
generate functionSun, 18 Jun 2023

como agrego que un int sea para palabras

String numberToWords(int num) { if (num == 0) return "Zero"; int billion = num / 1000000000; int million = (num - billion * 1000000000) / 1000000; int thousand = (num - billion * 1000000000 - million * 1000000) / 1000; int rest = num - billion * 1000000000 - million * 1000000 - thousand * 1000; String result = ""; if (billion != 0) result = threeDigit(billion) + " Billion"; if (million != 0) { if (!result.isEmpty()) result += " "; result += threeDigit(million) + " Million"; } if (thousand != 0) { if (!result.isEmpty()) result += " "; result += threeDigit(thousand) + " Thousand"; } if (rest != 0) { if (!result.isEmpty()) result += " "; result += threeDigit(rest); } return result

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed del boton eliminar, que se pueda eliminar un dato registrado tipo int

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { try { int numero = Integer.parseInt(JOptionPane.showInputDialog("Ingrese numero de registro")); if (numero > 0 && numero <= reg) { int posicion = numero - 1; registros[posicion] = null; JOptionPane.showMessageDialog(null, "Se elimino el registro numero: " + numero); } else { JOptionPane.showMessageDialog(null, "Numero de registro invalido"); } } catch (java.lang.NumberFormatException e) { JOptionPane.showMessageDialog(null, "El formato de entrada es incorrecto"); } }

Java
View
generate functionThu, 20 Jul 2023

JComboBox en un ActionPerformed de un boton registrar

private void btnregistrarActionPerformed(java.awt.event.ActionEvent evt) { String categoria = cmbcat.getSelectedItem().toString(); String marca = cmbmarca.getSelectedItem().toString(); String modelo = cmbmodelo.getSelectedItem().toString(); String color = cmbcolor.getSelectedItem().toString(); String anio = cmbanio.getSelectedItem().toString(); String tipo = cmbtipo.getSelectedItem().toString(); String motor = cmbmotor.getSelectedItem().toString(); String cilindraje = cmbcilindraje.getSelectedItem().toString(); String transmision = cmbtrans.getSelectedItem().toString(); String placa = txtplaca.getText().toUpperCase(); String nombre = txtnombre.getText(); String direccion = txtdireccion.getText

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed del boton eliminar, que se pueda eliminar un dato registrado tipo int en una base de datos

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: try{ Connection cn = DriverManager.getConnection("jdbc:mysql://localhost/bd_prestamo", "root", ""); PreparedStatement pst = cn.prepareStatement("delete from tipos_prestamos where codigo_tipo_prestamo = ?"); pst.setString(1, txt_codigo.getText().trim()); pst.executeUpdate(); txt_codigo.setText(""); txt_descripcion.setText(""); JOptionPane.showMessageDialog(this, "REGISTRO ELIMINADO.", "Eliminado", JOptionPane.INFORMATION_MESSAGE); btnEliminar.setEnabled(false); txt_codigo.setEnabled(true); txt_descripc

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un estudiante de una tabla con solo el codigo del estudiante

int row = tableEstudiante.getSelectedRow(); if (row < 0) { JOptionPane.showMessageDialog(this, "Debe seleccionar una fila de la tabla"); return; } int id = Integer.parseInt(tableEstudiante.getValueAt(row, 0).toString()); if (JOptionPane.showConfirmDialog(this, "Desea eliminar este registro?", "Eliminar registro", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) { EstudianteDAO.eliminar(id); JOptionPane.showMessageDialog(this, "El registro ha sido eliminado"); estudianteTableController.updateTable(); }

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

def menu(): print("1. Sumar") print("2. Restar") print("3. Multiplicar") print("4. Dividir") print("5. Salir") choice = int(input("Introduce una opción: ")) return choice def suma(a,b): return a + b def resta(a,b): return a - b def multiplicacion(a,b): return a*b def division(a,b): return a/b while True: choice = menu() if choice == 1: a = float(input("Introduce el primer numero: ")) b = float(input("Introduce el segundo numero: ")) print("El resultado es: ", suma(a,b)) continue elif choice == 2: a = float(input("Introduce el primer numero: ")) b = float(input("Introduce el seg

Java
View
generate functionFri, 16 Jun 2023

Generar un menú que tenga la opción: Sumar

public class MenuCalculadora { public static void main(String[] args) { int choice; Scanner s = new Scanner(System.in); do { System.out.println("\nMENU: "); System.out.println("1.Suma"); System.out.println("2.Resta"); System.out.println("3.Salir"); System.out.println("Ingrese su opción: "); choice = s.nextInt(); switch (choice) { case 1: System.out.println("Agregar función Suma"); break; case 2: System.out.println("Agregar función Resta"); break; case 3: System.out.println("Salir"); break; default: System.out.println("Opción incorrecta."); } } while (choice != 3); } }

Java
View
generate functionWed, 19 Jul 2023

Como crear un metodo para consultar en una tabla de una base de datos

public void getUser(String username, String password) { try { Statement statement = connection.createStatement(); ResultSet resultSet = statement.executeQuery("SELECT name, email FROM User WHERE username = '" + username + "' AND password = '" + password + "'"); if (resultSet.next()) { String name = resultSet.getString("name"); String email = resultSet.getString("email"); System.out.println(name); System.out.println(email); } } catch (SQLException e) { e.printStackTrace(); } }

Java
View
generate functionSun, 18 Jun 2023

Hacer un menu con JOptionPane

public static void main(String[] args) { String selection = JOptionPane.showInputDialog(null, "What is your favourite kind of cheese?", "Cheese Selector", JOptionPane.QUESTION_MESSAGE, null, // Use // default // icon new Object[] { "Brie", "Cheddar", "Gouda", "Roquefort", "Swiss" }, "Cheddar").toString(); switch (selection) { case "Brie": System.out.println("You chose Brie!"); break; case "Cheddar": System.out.println("You chose Cheddar!"); break; } }

Java
View
generate functionFri, 16 Jun 2023

Generar un menú que tenga la opción: Sumar

public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("1. Sumar"); System.out.println("2. Restar"); System.out.println("3. Multiplicar"); System.out.println("4. Dividir"); System.out.println("5. Salir"); System.out.println("Ingrese una opción: "); int opcion = sc.nextInt(); int num1, num2; switch (opcion) { case 1: System.out.println("Ingrese el primer numero:"); num1 = sc.nextInt(); System.out.println("Ingrese el segundo numero:"); num2 = sc.nextInt(); System.out.println("El resultado es: " + (num1 + num2)); break; case 2: System.out.println("Ingrese el primer numero:"

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

Script function menu() { return "1 => Sumar\n" + "2 => Restar\n" + "3 => Multiplicar\n" + "4 => Dividir\n" + "5 => Salir\n" } function opcion(value) { switch(parseInt(value)) { case 1: return menu(); case 2: return menu(); case 3: return menu(); case 4: return menu(); case 5: return "Gracias por usar este programa"; } } opcion(prompt("Escoja una opcion del menu\n" + menu()))

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un estudiante de una tabla con solo el codigo del estudiante

private void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: String codigo = txtCodigo.getText(); int cod = Integer.parseInt(codigo); E.EliminarE(cod); try { String [] titulos = {"Codigo", "Nombre", "Apellido", "Telefono"}; String sql = "SELECT * FROM estudiante"; model = new DefaultTableModel(null, titulos); Estudiante = E.consultaEstudiante(sql); String [] fila = new String[4]; for(int i = 0; i < Estudiante.size(); i++) { fila[0] = Estudiante.get(i).getCodigo()+ ""; fila[1] = Estudiante.get(i).getNombre(); fila[2] =

Java
View
generate functionFri, 16 Jun 2023

Generar un menú que tenga la opción: Sumar

def main(): print("1) Sumar") print("2) Restar") print("3) Multiplicar") print("4) Dividir") print("5) Salir") choice = int(input("Seleccione una opción: ")) if choice in ( 1, 2, 3, 4): num1 = int(input("Ingrese el primer número: ")) num2 = int(input("Ingrese el segundo número: ")) if choice == 1: print(num1, "+", num2, "=", add(num1, num2)) elif choice == 2: print(num1, "-", num2, "=", subtract(num1, num2)) elif choice == 3: print(num1, "*", num2, "=", multiply(num1, num2)) else: print(num1, "/", num2, "=", divide(num1, num

Java
View
generate functionFri, 16 Jun 2023

Un programa que presente un menú con lo siguiente: Sumar, restar, multiplicar, dividir y la opción de salir del menú. Para cada opción se deben solicitar dos números, realizar la operación, imprimir el resultado y volver al menú.

def add(a, b): return a + b def subtract(a, b): return a - b def multiply(a, b): return a * b def divide(a, b): return a / b def menu(): print("\nCalculator\n") print("1. Add") print("2. Subtract") print("3. Multiply") print("4. Divide") print("5. Quit") print("Enter 'x' to exit.") while True: menu() choice = input("Enter choice(1/2/3/4/5): ") if choice == '5': break a = float(input("Enter first number: ")) b = float(input("Enter second number: ")) if choice == '1': print(a, "+", b, "=", add(a,b)) elif choice == '2': print(a, "-", b, "=",

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed haga que un boton pueda eliminar un dato registrado tipo codigo de una base de datos

private void jEliminarActionPerformed(java.awt.event.ActionEvent evt) { try { PreparedStatement pps = conexion.prepareStatement("delete from articulos where codigo_articulo='"+txtCodigo.getText()+"'"); pps.executeUpdate(); JOptionPane.showMessageDialog(null, "Dato eliminado"); } catch (SQLException ex) { Logger.getLogger(GestionarArticulos.class.getName()).log(Level.SEVERE, null, ex); } }

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed haga que un boton pueda eliminar un dato registrado de una base de datos

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: String cod=txtcod.getText(); try { cts=cn.prepareCall("{call eliminarcliente(?)}"); cts.setString(1, cod); int rpta=cts.executeUpdate(); if(rpta==1){ JOptionPane.showMessageDialog(this,"Cliente Eliminado correctamente!!","Aviso",JOptionPane.INFORMATION_MESSAGE); BOTONES(); DESABILITAR(); limpiar(); cargar(); }else { JOptionPane.showMessageDialog(this, "Cliente no Eliminado", "Aviso", JOptionPane.INFORMATION_MESSAGE); } } catch (SQLException | HeadlessException e) {JOptionPane.showMessageDialog(this, e.toString

Java
View
generate functionWed, 19 Jul 2023

Como crear un metodo para consultar en una tabla de una base de datos

public Cliente getCliente(int id) { Cliente cliente = null; try { String query = "SELECT * FROM clientes WHERE id = ?"; PreparedStatement preparedStatement = connection.prepareStatement(query); preparedStatement.setInt(1, id); ResultSet rs = preparedStatement.executeQuery(); if (rs.next()) { cliente = new Cliente(); cliente.setId(rs.getInt("id")); cliente.setNombre(rs.getString("nombre")); cliente.setApellidos(rs.getString("apellidos")); cliente.setEmail(rs.getString("email")); cliente.setTelefono(rs.getString("telefono")); cliente.setCalle(rs.getString("calle")); cliente.setNumero(rs.getInt("numero")); cliente.setPiso(rs.getString("piso"));

Java
View
generate functionSun, 18 Jun 2023

Hacer un programa que solicite dos números y calcule la suma de los mismos, se debe capturar una posible excepción e informar sobre la misma.

import java.io.BufferedReader; import java.io.InputStreamReader; /** * Ejercicio 3 * * @author Arturo */ public class Ejercicio03 { /** * @param args the command line arguments */ public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int numero1, numero2, suma; System.out.println("Introduce el primer número: "); numero1 = Integer.parseInt(br.readLine()); System.out.println("Introduce el segundo número: "); numero2 = Integer.parseInt(br.readLine()); suma = numero1 + numero2; System.out.println("La suma de los números es: " + suma); } catch (Exception e) { System.out.println("Se ha producido un error:

Java
View
generate functionWed, 19 Jul 2023

Hacer que un boton eliminar elimine los datos registrados

Script function clear() { var txtBox = document.getElementById("txt_nombre"); txtBox.value = ""; var txtBox = document.getElementById("txt_apellido"); txtBox.value = ""; var txtBox = document.getElementById("txt_edad"); txtBox.value = ""; var txtBox = document.getElementById("txt_email"); txtBox.value = ""; var txtBox = document.getElementById("txt_fecha"); txtBox.value = ""; var txtBox = document.getElementById("txt_celular"); txtBox.value = ""; var txtBox = document.getElementById("txt_direccion"); txtBox.value = "

Java
View
generate functionThu, 20 Jul 2023

Como puedo agregar que un JComboBox pueda registrar todo el contenido en una tabla de base de datos en un ActionPerformed

public void actionPerformed(ActionEvent arg0) { //Cargo datos de la base de datos String sql = "SELECT * FROM empleados"; try{ Connection cn = DriverManager.getConnection("jdbc:mysql://localhost/bd_recurso_humano", "root", ""); PreparedStatement pst = cn.prepareStatement(sql); ResultSet rs = pst.executeQuery(); //Limpiar cmbx_nombre.removeAllItems(); while(rs.next()){ cmbx_nombre.addItem(rs.getString("nombre_empleado")); } }catch (Exception e){ } }

Java
View
generate functionWed, 19 Jul 2023

En el actionperformed del boton eliminar, que se pueda eliminar un dato registrado tipo int en una base de datos

private void jButtonEliminarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: try{ Connection cn=DriverManager.getConnection("jdbc:mysql://localhost/bd_proyecto", "root", ""); PreparedStatement pst=cn.prepareStatement("delete from usuarios where codigo = ?"); pst.setString(1, jTextFieldCodigo.getText().trim()); pst.executeUpdate(); jTextFieldCodigo.setText(""); jTextFieldNombre.setText(""); jTextFieldDireccion.setText(""); jTextFieldTelefono.setText(""); jTextFieldCorreo.setText(""); JOptionPane.showMessageDialog(null, "Registro Eliminado."); }catch(Exception e){ System.out.print(e.getMessage());

Java
View
generate functionWed, 19 Jul 2023

En el btnEliminarActionPerformed quiero que se pueda eliminar un estudiante de una tabla con solo el codigo del estudiante

private void btnEliminarActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: int fila = tbEstudiantes.getSelectedRow(); String cod = ""; cod = tbEstudiantes.getValueAt(fila, 0).toString(); if (fila >= 0) { try { PreparedStatement pps = cn.prepareStatement("DELETE FROM estudiantes WHERE cod_est ='" + cod + "'"); pps.executeUpdate(); JOptionPane.showMessageDialog(null, "Dato Eliminado"); mostrardatos(""); } catch (SQLException ex) { Logger.getLogger(Interfaz.class.getName()).log(Level.SEVERE, null, ex); } } }

Java
View
generate functionThu, 20 Jul 2023

JComboBox en un ActionPerformed de un boton registrar con 5 model

private void btnRegistrarActionPerformed(java.awt.event.ActionEvent evt) { int selectedIndex = model.getSelectedIndex(); switch (selectedIndex) { case 0: model.addElement("Item6"); model.addElement("Item7"); model.addElement("Item8"); model.addElement("Item9"); model.addElement("Item10"); break; case 1: model.addElement("Item11"); model.addElement("Item12"); model.addElement("Item13"); model.addElement("Item14"); model.addElement("Item15"); break; case 2: model.addElement("Item16"); model.addElement("Item17"); model.addElement("Item18"); model.addElement("Item19"); model.addElement("Item20"); break; case 3: model.addElement("Item21"); model.addElement("Item22

Java
View
generate functionFri, 16 Jun 2023

Generar un menú que tenga las opciones: 1. Sumar 2. Restar 3. Multiplicar 4. Dividir 5. Salir

Script def menu(): choice = int(input('Selecciona una opción: \n1. Sumar\n2. Restar\n3. Multiplicar\n4. Dividir\n5. Salir\n')) return choice def add(a, b): return a + b def sub(a, b): return a - b def mul(a, b): return a * b def div(a, b): return a / b def calculate(choice, a, b): if choice == 1: return add(a, b) elif choice == 2: return sub(a, b) elif choice == 3: return mul(a, b) elif choice == 4: return div(a, b) while True: choice = menu() if choice != 5: a = int(input('Ingresa el primer valor: ')) b = int(input('Ingresa el seg

Java
View
generate functionThu, 20 Jul 2023

JComboBox en un ActionPerformed de un boton registrar con 5 model

private void registrarActionPerformed(java.awt.event.ActionEvent evt) { if (registrar.getText().equals("Registrar")) { modeloRegistro= new DefaultComboBoxModel(modelo); jComboBox1.setModel(modeloRegistro); registrar.setText("Guardar"); } else { modeloRegistro= new DefaultComboBoxModel(modelo); jComboBox1.setModel(modeloRegistro); registrar.setText("Registrar"); } }

Java
View
generate functionFri, 16 Jun 2023

Generar un menú que tenga la opción: 1. Sumar

import javax.swing.JOptionPane; public class Menu { public static void main(String[] args) { int opcion = 0; do { try { opcion = Integer.parseInt(JOptionPane.showInputDialog(null, "1. Sumar\n2. Restar\n3. Multiplicar\n4. Dividir\n0. Salir", " MENU DE OPCIONES ", JOptionPane.QUESTION_MESSAGE)); switch (opcion){ case 0: break; case 1: JOptionPane.showMessageDialog(null,"La suma es: " + sumar()); break; case 2: JOptionPane.showMessageDialog(null,"La resta es: " + restar()); break; case 3: JOptionPane.showMessageDialog(null,"La multiplicacion es: " + multiplicar()); break; case 4: JOption

Java
View
generate functionSun, 18 Jun 2023

Hacer que un caso default regrese a la tarea anterior

public static String getDayOfWeek(int dayNumber) { String dayOfWeek = ""; if(dayNumber == 1) { dayOfWeek = "Monday"; } else if(dayNumber == 2) { dayOfWeek = "Tuesday"; } else if(dayNumber == 3) { dayOfWeek = "Wednesday"; } else if(dayNumber == 4) { dayOfWeek = "Thursday"; } else if(dayNumber == 5) { dayOfWeek = "Friday"; } else if(dayNumber == 6) { dayOfWeek = "Saturday"; } else if(dayNumber == 7) { dayOfWeek = "Sunday"; } else { dayOfWeek = "Weekday"; } return dayOfWeek; }

Java
View
generate functionWed, 19 Jul 2023

Como crear un metodo para consultar en una tabla de una base de datos

public List<Employees> getEmployees() { final String query = "select * from employees"; List<Employees> employees = new ArrayList<>(); try (Connection connection = getConnection(); PreparedStatement stmt = connection.prepareStatement(query); ResultSet rs = stmt.executeQuery();) { while (rs.next()) { Employee employee = new Employee(rs.getString("name"), rs.getString("lastname")); employees.add(employee); } } catch (SQLException ex) { System.err.println(ex.getMessage()); } return employees; }

Java
View
generate functionSun, 18 Jun 2023

Crear un menu con el boton de crear una cita de soporte tecnico.

Script #!/bin/bash # Author: [YOUR NAME] clear echo "------------------------------------------" echo " Bienvenido a la sesion de soporte tecnico " echo "------------------------------------------" echo " [1] - Crear una cita " echo " [2] - Ver citas pendientes " echo " [3] - Salir " echo "------------------------------------------" read -p " Enter your choice [1-3] : " choice case $choice in 1) " Cita creada" sleep 2 ;; 2) " Cita pendiente" sleep 2 ;; 3) exit 0 ;; *) echo " Incorrect choice" sleep 2 ;; esac

Java
View

Questions about programming?Chat with your personal AI assistant