💻 Hacer un programa que registre N palabras, el programa terminará cuando se ingrese la palabra "CODIGO".
* PSeInt :
Algoritmo full_codigos
Definir Palabra como Caracter;
Palabra <- "";
Escribir "INGRESA N PALABRAS.";
Escribir "INGRSE LA PALABRA CODIGO PARA FINALIZAR";
Mientras Palabra != "CODIGO" Hacer
Escribir Sin Saltar "Ingrese una Palabra :";
Leer Palabra;
FinMientras
FinSubProceso
* Python :
print("DIGITE CODIGO PARA TERMINAR")
palabra = ""
while palabra!="CODIGO":
palabra = input("INGRESE UNA PALABRA : ")
* Lenguaje C :
#include<stdio.h>
#include<string.h>
#define MAX_STRLEN 256
int main() {
char palabra[MAX_STRLEN] = {" "};
while (strcmp(palabra,"CODIGO") != 0) {
printf("INGRESE UNA PALABRA : ");
scanf("%s", palabra);
}
return 0;
}
* C++ :
#include<iostream>
using namespace std;
int main() {
string palabra="";
while (palabra!="CODIGO") {
cout << "INGRESE UNA PALABRA : ";
cin >> palabra;
}
return 0;
}
* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
class registre_N_palabras
{
static void Main(string[] args)
{
}
}
}
* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class registre_N_palabras {
public static void main(String[] args) {
}
}