Error, mensaje duplicado.
Solicito por favor a algun moderador que tenga la amabilidad de borrarlo.
Saludos.
Solicito por favor a algun moderador que tenga la amabilidad de borrarlo.
Saludos.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
int (funcion_recursiva_potencia2(int x,int n)); [1]
{
int numero;
if (n==0)
return 1;
else
return x*potencia2(x, n-1); [2]
}
int potencia(int x,int n) {
if (n==0)
return 1;
else
return x * potencia(x, n-1);
}
#include <stdio.h>
int main(int argc, char* argv[]) {
int segundos;
printf("Ingrese cantidad de segundos: ");
scanf("%d",&segundos);
while(getchar()!='\n');
if (segundos % 60)
printf("Son %d minutos y %d segundos.", segundos / 60, segundos % 60);
else
printf("Son exactamente %d minutos.", segundos / 60);
getchar();
return 0;
}
fseek(fichero_estudiante, posicion * sizeof(struct registro_estudiante), SEEK_SET);
#include<iostream>
using namespace std;
int main()
{
int array[10];
for(int i=0; i<10; i++)
{
cout << endl << "ingrese valor de array[" << i << "]= ";
cin >> array[i];
}
int may=0, pos = 0;
for(int i=0; i<10; i++)
if (array[i] > may)
{
may = array[i];
pos = i;
}
cout << endl << "Valor mayor= " << may << " En la posicion array[" << pos <<"]";
cout << endl << endl;
cin.get();
cin.get();
}
...
#include <string.h>
...
int funcion(char *paths[8]){
strncpy(pathGroup, paths, 8);
...
Citarno entiendo como declaras un string si no lo has incluido, en los otros pasan cossas similaresHola Stakewinner00.
#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
char frase[100];
int i=0;
const char *num[10] = {"cero","uno","dos","tres","cuatro","cinco",
"seis","siete","ocho","nueve" };
cout << "Frase: ";
cin >> frase;
while (frase[i]) {
if (isdigit(frase[i]))
cout << num[frase[i]-48] << " ";
i++;
}
while(cin.get()!='\n');
cin.get();
return 0;
}
#include<iostream>
using namespace std;
int main() {
string texto;
cout << "Texto: ";
getline(cin, texto);
cout << "El texto tiene " << texto.length() << " caracteres.";
cin.get();
return 0;
}
#include <iostream>
#define MAX_PALABRAS 4
using namespace std;
int main() {
string vec[MAX_PALABRAS], min;
cout << "Ingrese " << MAX_PALABRAS << " palabras" << endl;
cout << "-----------------" << endl;
min.assign(255,255);
for(int i = 0; i < MAX_PALABRAS; i++) {
cout << "Palabra " << i+1 << " :";
cin >> vec[i];
if (vec[i] < min)
min = vec[i];
}
cout << endl << "Primer palabra por orden alfabetico: " << min;
while(cin.get()!='\n');
cin.get();
return 0;
}
Citarecfisa, en tu codigo falta un include despues lo añado
Cita de: Stakewinner00 en 20 Septiembre 2012, 21:04 PM
ecfis de lo que se trataba es de lo siguiente
entrada
HOLA
salida
el texto tiene 4 caracteres o simplemente un 4
otro ejemplo
entrada
________
hola k tal estas
salida
________
el texto tiene 16 caracteres o un 16
#include<iostream>
using namespace std;
int main() {
string texto;
cout << "Texto: ";
getline(cin, texto);
cout << "El texto tiene " << texto.length() << " caracteres.";
cin.get();
return 0;
}
#include <iostream>
#define MAX_PALABRAS 4
using namespace std;
int main() {
string vec[MAX_PALABRAS], min;
cout << "Ingrese " << MAX_PALABRAS << " palabras" << endl;
cout << "-----------------" << endl;
min.assign(255,255);
for(int i = 0; i < MAX_PALABRAS; i++) {
cout << "Palabra " << i+1 << " :";
cin >> vec[i];
if (vec[i] < min)
min = vec[i];
}
cout << endl << "Primer palabra por orden alfabetico: " << min;
while(cin.get()!='\n');
cin.get();
return 0;
}