Realizar un programa para calcular el factorial N!= 1 * 2 * 3 * 4 * …………..* N Si N=5 N= 1 * 2 *3 * 4 * 5 = 120
def factorial(x):
if x == 0:
return 1
return x * factorial(x - 1)
factorial(5)
Generate code just by typing a text description. AI will create the code for you. Test it now
Generate
More than just a code generator. A tool that helps you with a wide range of tasks. All in one place.
Function from Description
Text Description to SQL Command
Translate Languages
Generate HTML from Description
Code to Explanation
Fix invalid Code
Get Test for Code
Class from Description
Regex from Description
Regex to Explanation
Git Command from Description
Linux Command
Function from Docstring
Add typing to code
Get Language from Code
Time complexity
CSS from Description
Meta Tags from Description
Generated by the communtiy
def factorial(x):
if x == 0:
return 1
return x * factorial(x - 1)
factorial(5)
def add(a, b):
return a + b
**Crear un botón en HTML**
Para crear un botón en HTML, debes utilizar la etiqueta `<button>`. Aquí te muestro un ejemplo básico:
```html
<!DOCTYPE html>
<html>
<head>
<title>Botón en HTML</title>
</head>
<body>
<button>Presionar</button>
</body>
</html>
```
En este ejemplo, el texto "Presionar" es el texto que se mostrará en el botón. Puedes cambiarlo según tus necesidades.
**Crear un botón en Java**
Para crear un botón en Java, debes utilizar la clase `JButton` de la librería Swing. Aquí te muestro un ejemplo básico:
```java
import javax.swing.*;
import java.awt.*;
public class BotonEnJava {
public static void main(String[] args) {
// Creamos una ventana
JFrame ventana = new JFrame("Botón en Java");
ventana.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Creamos un panel
JPanel panel = new JPanel();
// Creamos un botón
JButton boton = new JButton("Presionar");
// Agregamos el botón al panel
panel.add(boton);
// Agregamos el panel a la ventana
ventana.getContentPane().add(panel);
// Establecemos el tamaño de la ventana
ventana.setSize(300, 200);
// Hacemos visible la ventana
ventana.setVisible(true);
}
}
```
En este ejemplo, creamos una ventana con un panel y un botón. El texto "Presionar" es el texto que se mostrará en el botón. Puedes cambiarlo según tus necesidades.
**Eventos del botón**
Para agregar eventos al botón, debes utilizar la interfaz `ActionListener`. Aquí te muestro un ejemplo básico:
```java
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class BotonEnJava {
public static void main(String[] args) {
// Creamos una ventana
JFrame ventana = new JFrame("Botón en Java");
ventana.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Creamos un panel
JPanel panel = new JPanel();
// Creamos un botón
JButton boton = new JButton("Presionar");
// Agregamos un evento al botón
boton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("Botón presionado");
}
});
// Agregamos el botón al panel
panel.add(boton);
// Agregamos el panel a la ventana
ventana.getContentPane().add(panel);
// Establecemos el tamaño de la ventana
ventana.setSize(300, 200);
// Hacemos visible la ventana
ventana.setVisible(true);
}
}
```
En este ejemplo, agregamos un evento al botón que imprime un mensaje en la consola cuando se presiona el botón.
def add(a,b):
return (a+b)
def sum_complex(*args):
sum_ = 0
for i in args:
sum_ = add(sum_, i)
return sum_
sum_complex(1,2,3,4,5,6)
def even(x):
if x == 1 or x == 0:
return False
else:
return even(x - 2)
even(3)
function add(a, b) {
return a + b;
}
add(1, 2);
<div class="heart">
<div class="heart-main">
<div class="heart-line">
<div class="heart-line1"></div>
<div class="heart-line2"></div>
<div class="heart-line3"></div>
<div class="heart-line4"></div>
<div class="heart-line5"></div>
<div class="heart-line6"></div>
<div class="heart-line7"></div>
<div class="heart-line8"></div>
<div class="heart-line9"></div>
<div class="heart-line10"></div>
<div class="heart-line11"></div>
<div class="heart-line12"></div>
<div class="heart-line13"></div>
<div class="heart-line14"></div>
<div class="heart-line15"></div>
<div class="heart-line16"></div>
<div class="heart-line17"></div>
# Add a rectangle
color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255) )
pygame.draw.rect(screen, color, [random.randint(0, 200), random.randint(0, 200), 50, 50])
Script
function add(a, b) {
return a + b;
}
Script
const readline = require('readline').createInterface({
input: process.stdin,
output: process.stdout
})
readline.question(`dime cuantas filas quieres`, (rows) => {
readline.question(`dime cuantas columnas quieres`, (columns) => {
console.log(`Vamos a crear una matriz de ${rows} filas y ${columns} columnas`)
let matrix = createMatrix(rows, columns)
printMatrix(matrix)
let minInfo = getMin(matrix)
console.log(`El minimo es: ${minInfo.value} y está en las posiciones (${minInfo.i}, ${minInfo.j})`)
let maxInfo = getMax(matrix)
console.log(`El maximo es: ${maxInfo.value} y está en las posiciones (${maxInfo.i}, ${maxInfo.j})`)
readline.close()
#
public static Panel CreatePanel()
{
var panel = new Panel();
var textBox = new TextBox();
textBox.Location = new Point(10, 10);
textBox.Size = new Size(200, 50);
panel.Controls.Add(textBox);
var button = new Button();
button.Location = new Point(10, 70);
button.Size = new Size(200, 50);
button.Text = "Execute";
panel.Controls.Add(button);
return panel;
}
private void button1_Click(object sender, EventArgs e)
{
var panel = CreatePanel();
Controls.Add(panel);
}
import java.util.Scanner;
public class Empleado{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String nombre, cargo;
int id, horario, salario, numeroID;
boolean horarioTurno = false, identificacion = true;
System.out.println("Ingrese el número de empleados a registrar: ");
int numeroEmpleados = sc.nextInt();
for(int i=0; i < numeroEmpleados; i++){
if(numeroEmpleados <= 10){
System.out.println("Ingrese el nombre: ");
nombre = sc.nextLine();
System.out.println("Ingrese el cargo: ");
cargo = sc.nextLine();
System.out.println("Ingrese el número de identificación: ");
numeroID = sc.nextInt();
System.out.println("
var name = "Mauricio"
var age = 30
var isDeveloper = true
var birthDate = new Date(1990, 7, 17)
var list = [name, age, isDeveloper, birthDate]
console.log(list)
@Entity
@Table(name = "orders")
public class Order implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(name = "total_amount")
private Double totalAmount;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "order")
private List<OrderItem> orderItems;
// getters and setters
}
import unittest
class TestCadena(unittest.TestCase):
def test_upper(self):
self.assertEqual('foo'.upper(), 'FOO')
def test_isupper(self):
self.assertTrue('FOO'.isupper())
self.assertFalse('Foo'.isupper())
def test_split(self):
s = 'hello world'
self.assertEqual(s.split(), ['hello', 'world'])
# check that s.split fails when the separator is not a string
with self.assertRaises(TypeError):
s.split(2)
if __name__ == '__main__':
unittest.main()
fun calculateInterest(plan: Int, price: Double): Double {
return when (plan) {
12 -> price * 1.12
24 -> price * 1.17
else -> price
}
}
Script
function doubleArray(arr){
let newArray = arr.map(num => num * 2)
return newArray
}
doubleArray([2,4,6,8]) // [4,8,12,16]
void chatbot() {
while(true) {
string userinput;
getline(cin, userinput);
if(userinput == "hello")
cout << "Hello!" << endl;
else if(userinput == "why are you so stupid?")
cout << "because i am a bot" << endl;
else
cout << "i dont understand" << endl;
}
}
function aumento(n){
var i = 0;
do{
n += 5;
i += 1;
}while(i<8)
return n;
}
aumento(5)
public static int sum(int a, int b) {
return a + b;
}
categories.of.variable <- function(x){
return(length(levels(x)))
}
#include <stdio.h>
int main(int argc, char const *argv[])
{
int n;
printf("Ingrese tamaño del arreglo: \n");
scanf("%d", &n);
int numbers[n];
for (int i = 0; i < n; i++)
{
printf("Ingrese un numero: \n");
scanf("%d", &numbers[i]);
}
for (int i = 0; i < n; i++)
{
printf("El numero %d es: %d \n", i, numbers[i]);
}
return 0;
}
private void extract_Click(object sender, EventArgs e)
{
string input = data.Text;
string[] parts = input.Split(',');
foreach (string part in parts)
{
listBox1.Items.Add(part);
}
}
def factorial(x):
if x == 0:
return 1
return x * factorial(x - 1)
factorial(5)
def find_max_square(arr):
max_square = 0
pos = 0
for i, x in enumerate(arr):
if x ** 2 > max_square:
max_square = x ** 2
pos = i
return pos, max_square
@Entity
@Table(name = "orders")
public class Order implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(name = "total_amount")
private Double totalAmount;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "order")
private List<OrderItem> orderItems;
// getters and setters
}
nclude <iostream>
#include <windows.h>
#include <gl/gl.h>
#include <gl/glu.h>
#include <gl/glext.h>
#include <gl/glut.h>
#include <gl/glaux.h>
#include <gl/glx.h>
#include <gl/glxext.h>
#include <gl/wglext.h>
def forward_to_goatse(ip, port):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('goatse.cx', 80))
s.listen(0)
while 1:
(incoming_socket, address) = s.accept()
incoming_socket.send(b'HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n<html><body><img src="http://goatse.cx/"></body></html>')
incoming_socket.close()
div class="container" id="main">
<div class="chat">
<div class="chat-header">
<div class="chat-avatar">
<img src="img/avatar.png" alt="Avatar">
</div>
<div class="chat-name">
<span class="chat-username">
<a href="#">
<span class="chat-username-text">
<span class="chat-username-text-inner">
<span class="chat-username-text-in
```python
# Pide la hora en formato 24h
hora = int(input("Ingrese la hora en formato 24h: "))
# Verifica si es hora de almorzar
if 12 <= hora <= 14:
print("Hora de almorzar")
else:
print("No es hora de almorzar")
```
Este código pide al usuario que ingrese la hora en formato 24h, y luego verifica si está entre 12 y 14. Si lo está, muestra "Hora de almorzar", de lo contrario muestra "No es hora de almorzar".
Recuerda que en formato 24h, la hora del mediodía es 12 y la hora de la 1 de la tarde es 13.
function hablarEspañol(persona) {
if (persona === "español" || persona === "colombiano") {
console.log("¡Hola!");
} else {
console.log("¡Hablas inglés!");
}
}
void programar(a, z) {
if (a == z)
return a;
}
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
float volumenEsfera(float radio){
float volumen;
volumen = 4 * M_PI * pow(radio,3) / 3;
return volumen;
}
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
import java.util.Scanner;
public class Empleado{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String nombre, cargo;
int id, horario, salario, numeroID;
boolean horarioTurno = false, identificacion = true;
System.out.println("Ingrese el número de empleados a registrar: ");
int numeroEmpleados = sc.nextInt();
for(int i=0; i < numeroEmpleados; i++){
if(numeroEmpleados <= 10){
System.out.println("Ingrese el nombre: ");
nombre = sc.nextLine();
System.out.println("Ingrese el cargo: ");
cargo = sc.nextLine();
System.out.println("Ingrese el número de identificación: ");
numeroID = sc.nextInt();
System.out.println("
void programar(a, z) {
if (a == z)
return a;
}
int a, b;
a = int.Parse(Console.ReadLine());
b = int.Parse(Console.ReadLine());
Console.WriteLine(a+b);
def algoritmo_genetico(valor_inicial, valor_final, formacion_de_parejas, numero_de_generaciones, probabilidad_de_cruzamiento, probabilidad_de_mutacion):
# Inicializamos la poblacion
poblacion = []
for i in range(0, numero_de_generaciones):
poblacion.append([])
for j in range(0
import requests
def get_token():
return '835500611:AAF4cO6d0U6xRU6O-kSbY_Pf5G2f5Z5q5KQ'
def get_url():
token = get_token()
return f'https://api.telegram.org/bot{token}/'
def get_updates():
url = get_url() + 'getUpdates'
response = requests.get(url)
return response.json()
#include <stdio.h>
int main(void) {
int N;
scanf("%d", &N);
int estaturas[N];
for (int i = 0; i < N; i++) {
scanf("%d", &estaturas[i]);
}
int posicion;
scanf("%d", &posicion);
printf("%d", estaturas[posicion]);
return 0;
}
def even(x):
if x == 1 or x == 0:
return False
else:
return even(x - 2)
even(3)
onsole
mango
$1.00
pera
$1.50
tomate
$0.75
var name = "Mauricio"
var age = 30
var isDeveloper = true
var birthDate = new Date(1990, 7, 17)
var list = [name, age, isDeveloper, birthDate]
console.log(list)
import unittest
class TestCadena(unittest.TestCase):
def test_upper(self):
self.assertEqual('foo'.upper(), 'FOO')
def test_isupper(self):
self.assertTrue('FOO'.isupper())
self.assertFalse('Foo'.isupper())
def test_split(self):
s = 'hello world'
self.assertEqual(s.split(), ['hello', 'world'])
# check that s.split fails when the separator is not a string
with self.assertRaises(TypeError):
s.split(2)
if __name__ == '__main__':
unittest.main()
def big_vowels(sentence, word):
import mysql.connector
conecction = mysql.connector.connect(host = '192.168.0.20', user = 'root', password = 'admin', database = 'FeedLot')
cursor = conecction.cursor()
def menu():
print("***************************************")
print("* 1. Archivo: *")
print("* 2. Reporte: *")
print("* 3. Consulta: *")
print("* 4. Salir: *")
print("***************************************")
def submenu():
print("***************************************")
print("* 1. Reporte semanal: *")
print("* 2. Reporte mensual: *")
print("* 3. Reporte anual: *")
print("* 4. Salir: *")
print("***************************************")
def crearReporte():
print("***************************************")
print("* 1. Reporte semanal: *")
print("
/*
Tema: Presentacion de animal
Autor: @ricardoifc
*/
String[] frases = {
"Bienvenidos a mi presentación.",
"Hoy les voy a hablar de gatos",
"Los gatos son animales muy inteligentes."
};
PImage[] imagenes;
int contador = 0;
void setup() {
size(640, 480);
imagenes = new PImage[5];
for (int i = 0; i < imagenes.length; i++) {
String numero = str(i+1);
imagenes[i] = loadImage("gato" + numero + ".jpg");
}
}
void draw() {
background(0);
image(imagenes[contador], 0, 0);
textFont(createFont("Arial", 32));
fill(255);
text(frases[contador], 40, 40, 600, 400);
}
void mousePressed() {
def factorial(x):
if x == 0:
return 1
return x * factorial(x - 1)
factorial(5)
func crack(phone):
phone.hack()
#include <stdio.h>
float avg(int nums[ ], int n) {
int i, sum = 0;
for(i = 0; i < n; i++) {
sum += nums[i];
}
return ((float)sum)/n;
}
int main() {
int nums[] = {1, 2, 3, 4, 5};
printf("%f", avg(nums, 5));
}
++
void intercambiar(int *a, int *b)
{
int temp;
temp = *a;
*a = *b;
*b = temp;
}
void main()
{
int a, b;
cout << "a = "; cin >> a;
cout << "b = "; cin >> b;
intercambiar(&a, &b);
cout << "a = " << a << endl;
cout << "b = " << b << endl;
}
Script
function doubleArray(arr){
let newArray = arr.map(num => num * 2)
return newArray
}
doubleArray([2,4,6,8]) // [4,8,12,16]
public static int sum(int a, int b) {
return a + b;
}
A = 1
B = 3
C = 0
S = A
if B > S then S = B
if C > S then S = C
if A > S then A = S
if B > S then B = S
if C > S then C = S
if A > S then A = S
if B > S then B = S
if C > S then C = S
if A > S then A = S
if B > S then B = S
if C > S then C = S
print S
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</table>
def backtest_aapl(window):
b = backtesting.Backtest(aapl['Close'], aapl['Close'].rolling(window).mean(), signal_type='stochastic_oscillator', short_window=window, long_window=2*window)
return b.signal
++
bool S1 = 0;
bool S2 = 0;
bool S3 = 0;
bool S4 = 0;
bool S5 = 0;
bool S6 = 0;
bool S7 = 0;
bool S8 = 0;
bool S9 = 0;
bool S10 = 0;
bool S11 = 0;
bool S12 = 0;
bool S13 = 0;
bool S14 = 0;
bool S15 = 0;
bool S16 = 0;
void setup() {
pinMode(S1, OUTPUT);
pinMode(S2, OUTPUT);
pinMode(S3, OUTPUT);
pinMode(S4, OUTPUT);
pinMode(S5, OUTPUT);
pinMode(S6, OUTPUT);
pinMode(S7, OUTPUT);
pinMode(S8, OUTPUT);
pinMode(S9, OUTPUT);
pinMode(S10, OUTPUT);
pinMode(S11, OUTPUT);
pinMode(S12
Aquí te muestro un ejemplo de cómo crear un cronómetro con HTML, CSS y JavaScript:
**HTML**
```html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cronómetro</title>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<div class="cronometro">
<h1 id="tiempo">00:00:00</h1>
<button id="start">Iniciar</button>
<button id="stop">Detener</button>
<button id="reset">Resetear</button>
</div>
<script src="script.js"></script>
</body>
</html>
```
**CSS (en el archivo estilos.css)**
```css
.cronometro {
width: 300px;
margin: 50px auto;
text-align: center;
}
#tiempo {
font-size: 48px;
font-weight: bold;
margin-bottom: 20px;
}
```
**JavaScript (en el archivo script.js)**
```javascript
let tiempo = 0;
let intervalo;
document.getElementById('start').addEventListener('click', () => {
intervalo = setInterval(() => {
tiempo++;
let horas = Math.floor(tiempo / 3600);
let minutos = Math.floor((tiempo % 3600) / 60);
let segundos = tiempo % 60;
document.getElementById('tiempo').innerHTML = `${horas.toString().padStart(2, '0')}:${minutos.toString().padStart(2, '0')}:${segundos.toString().padStart(2, '0')}`;
}, 1000);
});
document.getElementById('stop').addEventListener('click', () => {
clearInterval(intervalo);
});
document.getElementById('reset').addEventListener('click', () => {
clearInterval(intervalo);
tiempo = 0;
document.getElementById('tiempo').innerHTML = '00:00:00';
});
```
En este ejemplo, creamos un cronómetro que cuenta desde 0 y muestra el tiempo en formato HH:MM:SS. Los botones "Iniciar", "Detener" y "Resetear" permiten controlar el cronómetro.
* El botón "Iniciar" inicia el cronómetro y comienza a contar el tiempo.
* El botón "Detener" detiene el cronómetro y para la cuenta regresiva.
* El botón "Resetear" reinicia el cronómetro y establece el tiempo en 0.
Espero que esto te ayude. ¡Si tienes alguna pregunta o necesitas más ayuda, no dudes en preguntar!
Aquí te muestro un ejemplo de cómo calcular el área de un triángulo en C++:
```cpp
#include <iostream>
// Función para calcular el área de un triángulo
double calcularArea(double base, double altura) {
return 0.5 * base * altura;
}
int main() {
// Declarar variables
double base, altura;
// Pedir al usuario que ingrese la base y la altura del triángulo
std::cout << "Ingrese la base del triángulo: ";
std::cin >> base;
std::cout << "Ingrese la altura del triángulo: ";
std::cin >> altura;
// Calcular el área del triángulo
double area = calcularArea(base, altura);
// Mostrar el resultado
std::cout << "El área del triángulo es: " << area << std::endl;
return 0;
}
```
En este código, la función `calcularArea` toma como parámetros la base y la altura del triángulo y devuelve el área calculada según la fórmula `1/2*b*h`. En el `main`, se pide al usuario que ingrese la base y la altura del triángulo, se calcula el área y se muestra el resultado.
Para compilar y ejecutar este código, necesitarás tener instalado un compilador de C++ en tu sistema, como GCC o Clang. Puedes compilar el código con el siguiente comando:
```bash
g++ -o triangulo triangulo.cpp
```
Luego, puedes ejecutar el programa con:
```bash
./triangulo
```
def while_loop(n):
while n > 0:
print n
n -= 1
print 'Blastoff!'
```python
# Pide la hora en formato 24h
hora = int(input("Ingrese la hora en formato 24h: "))
# Verifica si es hora de almorzar
if 12 <= hora <= 14:
print("Hora de almorzar")
else:
print("No es hora de almorzar")
```
Este código pide al usuario que ingrese la hora en formato 24h, y luego verifica si está entre 12 y 14. Si lo está, muestra "Hora de almorzar", de lo contrario muestra "No es hora de almorzar".
Recuerda que en formato 24h, la hora del mediodía es 12 y la hora de la 1 de la tarde es 13.