Buenas , que significa ifstream , significa que solo para usar if? si me dicen porfas.
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ú
#include<iostream>
#include<stdlib.h>
using namespace std;
int main(){
int numeros[10] = {1,2,3,4,5,6,7,8,9,10};
int pares[10];
int impares[10];
int i,aux1,aux2;
for(i=0;i=9;i++){
if(numeros[i]%2==0){
aux1=numeros[i];
numeros[i]=pares[i];
pares[i]=aux1;
}
else if(numeros[i]%2==0){
aux2=numeros[i];
numeros[i]=impares[i];
impares[i]=aux2;
}
}
for(i=0;i=9;i++){
cout<<"\nNUMEROS PARES";
cout<<pares[i]<<endl;
cout<<"\n";
cout<<"\n";
cout<<"\n";
cout<<"\n";
cout<<"\nNUMEROS IMPARES";
cout<<impares[i]<<endl;
}
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int matriz[6][4];
int i, j;
int valor1=0, valor2=0, delta, aux;
for (i = 1; i <= 3; i = i + 1)
{
for (j = 1; j <= 3; j = j + 1)
{
system("cls");
cout << "Ingrese valor (" << i << "," << j << ")= ";
cin >> matriz[i][j];
}
}
for (i = 4; i <= 5; i = i + 1)
{
matriz[i][1] = matriz[i - 3][1];
matriz[i][2] = matriz[i - 3][2];
matriz[i][3] = matriz[i - 3][3];
}
for (i = 1; i <= 3; i = i + 1)
{
aux = matriz[i][1] * matriz[i + 1][2] * matriz[i + 2][3];
valor1 = valor1 + aux;
aux = matriz[i][3] * matriz[i + 1][2] * matriz[i + 2][1];
valor2 = valor2 + aux;
}
delta = valor1 - valor2;
system("cls");
for (i = 1; i <= 3; i = i + 1)
{
cout << "|" << matriz[i][1] << " , " << matriz[i][2] << " , " << matriz[i][3] << "|" <<endl ;
}
cout << "La resuesta es: " << delta<< endl;
system("PAUSE");
return 0;
}
#include<iostream>
using namespace std;
int main()
{
int valores[101], numeros[101], solucion[101];
int i = 1,j=1,z=1;
int valor;
for (i = 0; i <= 100; i = i + 1)
{
valores[i] = 0;
numeros[i] = 0;
solucion[i] = 0;
}
i = 1;
while (i<101)
{
valor = i * 2;
valores[i] = valor;
i = i + 1;
}
for (i = 1; i <= 100; i = i + 1)
{
valor = i * 3;
numeros[i] = valor;
}
i = 1;
iterar:
for (j = 1; j <= 100; j = j + 1)
{
if (valores[i] == numeros[j])
{
solucion[z] = valores[i];
z = z + 1;
}
}
if (i <= 100)
{
i = i + 1;
goto iterar;
}
if (solucion[1] != 0)
{
cout << "Solucion = " << solucion[1];
}
for (i = 2; i <= 100; i = i+1)
{
if (solucion[i] != 0)
{
cout << " - " << solucion[i];
}
}
cout << endl;
return i;
}