Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - lubzy95

Pages: [1]
1
hi
i get the same issue the console disappears after i enter the last value

2
i have managed to get it running but the moment i click enter after entering my last value in the console, the console just disappears
please help me out thank you

3
C / C++ /C# / Re: output console disappearing
« on: May 30, 2017 »
#pragma once
#include "stdafx.h"
#include <iostream>
#include <iomanip>
#include <cmath>
#include <fstream>
using namespace std;

int main()
{
   //declare an array
   float numbers [10];
   double sum;
   double mean;
   double standardDeviation;
   double AA;
   double sdresult;
   double mode;
   double max;
   double modeposition;

   //storing 30 numbers entered by user in an array
   cout<<"enter thirty floating point numbers"<<endl;

   //compute sum, mean and standard deviation
   for (int i = 0; i < 10; ++i)
   {
        cin >> numbers;
        sum += numbers;
      mean = sum /10;
      AA += pow(numbers - mean,2);
      max= numbers;
      modeposition = i;
    }
   sdresult = sqrt(AA/10);
   cout<<"sum="<<sum <<endl;
   cout<<"mean="<<mean <<endl;
    cout<<"standard Deviation = " <<sdresult<<endl;
   cout<<"mode="<<modeposition<<endl;

   return 0;
}

4
please assist me on where i might be going wrong
thank you in advance

5
#pragma once
#include "stdafx.h"
#include <iostream>
#include <iomanip>
#include <cmath>
#include <fstream>
using namespace std;

int main()
{
   //declare an array
   float numbers [10];
   double sum;
   double mean;
   double standardDeviation;
   double AA;
   double sdresult;
   double mode;
   double max;
   double modeposition;

   //storing 30 numbers entered by user in an array
   cout<<"enter thirty floating point numbers"<<endl;

   //compute sum, mean and standard deviation
   for (int i = 0; i < 10; ++i)
   {
        cin >> numbers;
        sum += numbers;
      mean = sum /10;
      AA += pow(numbers - mean,2);
      max= numbers;
      modeposition = i;
    }
   sdresult = sqrt(AA/10);
   mode = numbers[modeposition];
   cout<<"sum="<<sum <<endl;
   cout<<"mean="<<mean <<endl;
    cout<<"standard Deviation = " <<sdresult<<endl;
   cout<<"mode="<<mode<<endl;

   return 0;
}

Pages: [1]