no es tan dificil pero si pones un avance del code haci no me siento un te ayudo...
vas a ver q no es para nada imposible
vas a ver q no es para nada imposible
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ún = int(raw_input('Introduce un número: '))
m = int(raw_input('Introduce un número: '))
sumatorio = 0
for i in range(n, m):
sumatorio += (i*i)
n = i
print n
#include <iostream>
using namespace std;
int main()
{
int variable;
int rdo=0;
int temp;
int matriz[10];
for(int indice=0;indice<10;indice++)
{
cout << "Ingrese la nota: \n";
cin>> variable;
matriz[indice] = variable;
}
for (int indice=0;indice<10;indice++)
{
rdo = matriz[indice]+rdo;
}
for (int i=1;i<10;i++)
{
for (int j=0; j<10-1;j++)
{
if (matriz[j]>matriz[j+1])
{
temp = matriz[j];
matriz[j]=matriz[j+1];
matriz[j+1]=temp;
}
}
}
for (int j=0;j<10;j++)
{
cout<<"matriz[" <<j <<"] = " <<matriz[ j ] <<endl;
}
rdo= rdo/10;
cout<< "el promedio es: " <<rdo <<endl;
cout<<"el mayor es: " << matriz[9]<<endl;
cout<<"el menor es: " << matriz[0] <<endl;
system("PAUSE");
return 0;
}
float variable;
for(int indice=0;indice<501;indice++)
{
cout << "Ingrese la nota: \n";
cin>> variable;
matriz[indice] = variable;
}
#include <iostream>
using namespace std;
int main()
{
int variable;
int matriz[3];
for(int indice=0;indice<3;indice++)
{
cout << "Ingrese la nota: \n";
cin>> variable;
matriz[indice] = variable;
}
cout << "La matriz es: [" << matriz[0] << ", " << matriz[1] << ", " << matriz[2] << "]\n";
system("PAUSE");
return 0;
}