24 декември 2010, петък

Pardoned: Father set free after shooting teenager in ‘lynch mob’ gang that had come for his son

Pardoned: Father set free after shooting teenager in ‘lynch mob’ gang that had come for his son: "The victim and four friends approached Mr White’s home to confront his teenage son, Aaron, believing he had threatened a female friend with rape.

- Sent using Google Toolbar"

22 декември 2010, сряда

zadacha

#include "iostream"
#include "iomanip"
#include "math.h"
#include "ctype.h"
#include "string.h"

using namespace std;

int f[25];
int n;
int i;

void input(int n,int f[])
{
for(int i=0;i
{
cout<<"["<<<"]";
cin>>f[i];
}
}
void output(int n,int f[])
{
for(int i=0;i
cout<<<
}
int proizvedenie(int n,int f[])
{ int p=1;
for(int i=0;i
if(f[i]%2!=0) p=f[i]*p;

return p;

}
int minimum(int n,int f[])
{ int m=f[0];
for(int i=1;i
{if(m>f[i]) m=f[i];
return m;
}
}

int krat5(int n,int f[])
{ int kr=0;
for(int i=0;i
if(f[i]%5==0 ) kr++;
return kr;

}

void niz(int n, int f[])
{
for(int i=0;i
for(int j=n-1;j;j--)
if(f[j]

}

int main()
{
cout<<"Vyvedete broq elementi:";
cin>>n;

input(n,f);


cout<<"Proizvedenieto e:"<<

cout<<"Minimuma na elementite e:"<<

cout<<"Kratnite elementi na 5 sa:"<<

niz(n,f);

output(n,f);
return 0;

}