1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
#include <iostream>
#include <string>
#include <cmath>
#include <cstdlib>
#include <limits>
using namespace std;
bool die(const string & msg);
//FUNCTIONS PROTOTYPE VOIDS
void input( unsigned a[], unsigned els );
void output( const unsigned a[], unsigned els );
//FUNCTIONS PROTOTYPE RETURNS
unsigned sum( const unsigned a[], unsigned els );
double averageOdds( const unsigned a[], unsigned els );
void square( unsigned a[], unsigned els );
unsigned find( unsigned sought, const unsigned a[], unsigned els );
int main(){
unsigned a[5] = {1.1, 2.2, 3.3, 4.4, 5.5};
unsigned sought;
input(a, 5);
output(a, 5);
cout<<"Sum is " <<sum(a,5) <<endl;
cout<<"Average of odds " <<averageOdds(a,5) <<endl;
cout<< "Square array is: "; square(a,5); cout<<endl;
cout<<"Find value: ";
find(sought,a,5); cout<<endl;
}//endMain
//DIE FUNCTION
bool die(const string & msg){
cout<<"Fatal Error: " <<msg <<endl;
exit(EXIT_FAILURE);
}
//Functions
void input( unsigned a[], unsigned els ){
for( unsigned i = 0; i < els; i++ ){
cout<<"[" <<i <<"/" <<els <<"]: ";
cin >>a[i] || die("input failure");
}
}//1....................................................
void output( const unsigned a[], unsigned els ){
cout<<"[ " <<els <<" ]" <<"{ ";
for(unsigned i = 0; i < els; i++){
if(i > 0)
cout<<" ";
cout<<a[i] <<",";
}
cout<<" }" <<endl;
}//2.....................................................
unsigned sum( const unsigned a[], unsigned els ){
double ret = 0;
for (unsigned i = 0; i < els; i++)
ret += a[i];
return ret;
}//3.........................................................
double averageOdds( const unsigned a[], unsigned els ){
double avg = 0;
double sum1 = 0;
double odd = 0;
double even = 0;
for (unsigned i = 0; i < els; i++){
if ((a[i] % 2 != 0)){
odd += a[i];
avg = odd/els;
}
else
{
if(odd == 0 ) die("no element");
}
}
return avg;
}//4.............................................................
void square( unsigned a[], unsigned els ){
cout<<"[ " <<els <<" ]" <<"{ ";
for(unsigned i = 0; i < els; i++){
if(i > 0)
cout<<" ";
cout<<a[i] * a[i] <<",";
}
cout<<" }" <<endl;
}//5..............................................................
unsigned find( unsigned sought, const unsigned a[], unsigned els ){
cout<< "find( ";
sought = 0;
for(unsigned i = 0; i < els; i++){
cin >>sought || die("input failure");
if(i > 0){
cout<<" ";
cout<<sought <<"{ " <<a[i] <<",";
//UINT_MAX = a[i];
cout<<" }" <<endl;
}
sought = a[i];
if (sought != a[i]){
size_t i = UINT_MAX;
cout<< a[i];
}
else{sought = a[i];
}
//if (findnum == a[i])
// findnum = a[i];
//else
//{
// //a[i] = findnum;
// findnum = UINT_MAX;
// cout<< findnum <<"Uint_Max" <<endl;
//}
//
}
return sought;
}//6
|