| | |
question about array
![]() |
•
•
Join Date: Nov 2004
Posts: 2
Reputation:
Solved Threads: 0
hi, all.
i have some problems to do array.
i am supposed to get the average and sum in given number of array.
but, i only got 1 in my all answers.
please, tell me what was wrong in my program.
thank you.
//hw for array
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
float ave(float x[],int n);
float sum(float x[],int n );
float diff(float x,float y);
float large(float x[],int n );
float small(float x[],int n);
const float size=10;
int main()
{
float array[10]={24.9,18.5,7.9,14.3,56.1,37.8,41.5,28.3,32.7,19.4};
cout<< "\na) \n\n";
cout<<"\naverage of these numbers: "<<ave<<endl;
return 0;
}
float ave(float x[],int n)
{
int i;
float sum=0;
for (i=0;i<n;i++)
sum +=x[i];
return (sum/n);
}
i have some problems to do array.
i am supposed to get the average and sum in given number of array.
but, i only got 1 in my all answers.
please, tell me what was wrong in my program.
thank you.
//hw for array
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
float ave(float x[],int n);
float sum(float x[],int n );
float diff(float x,float y);
float large(float x[],int n );
float small(float x[],int n);
const float size=10;
int main()
{
float array[10]={24.9,18.5,7.9,14.3,56.1,37.8,41.5,28.3,32.7,19.4};
cout<< "\na) \n\n";
cout<<"\naverage of these numbers: "<<ave<<endl;
return 0;
}
float ave(float x[],int n)
{
int i;
float sum=0;
for (i=0;i<n;i++)
sum +=x[i];
return (sum/n);
}
![]() |
Similar Threads
- Array question (C)
- 2d array question (C++)
- Question RE using Array Values in Case/If statements (Visual Basic 4 / 5 / 6)
- Little Simple array question :) (C)
- Question about array (PHP)
- strcmp of 2-D array (C)
Other Threads in the C++ Forum
- Previous Thread: never to old
- Next Thread: help with first and second problem
| Thread Tools | Search this Thread |
api array based binary bitmap c++ c/c++ char class classes classified code coding compatible compile console conversion count date delete deploy desktop developer directshow dll download dynamic dynamiccharacterarray email encryption error file filewrite forms fstream function functions game givemetehcodez graph gui homeworkhelp homeworkhelper homeworksolutions iamthwee icon if...else ifstream input int integer java lib linkedlist linker loop looping loops map math matrix memory multiple news node object output play pointer problem program programming project python random read recursion reference rpg string strings struct symbol temperature template test text text-file toolkit tree url values variable vector video win32 windows winsock wordfrequency wxwidgets





