Jump to content
Fórum Script Brasil
  • 0

Arquivo em c++


Guilherme_CP

Question

Preciso de uma ajuda o meu programa não funciona adequadamente e não consigo achar o erro, alguém por favor pode me ajudar....

#include <cstdlib>
#include <iostream>
#include <fstream>

using namespace std;

int main(int argc, char *argv[])
{
   int v[100];
   int i=0,w,x,cont=0;
   float y;
   cout<<"DIGITE UM NUMERO"<<endl;
   cin>>w;
   ifstream fin("texto.txt");
   while(fin>>v[i]){
      cout<<v[i];
      y=y+v[i];
      cont++;
      i++;
      }
   y=y/cont;
   cont=0;
   for(x=0;x<=i;x++){
       if(w<v[i]){
          cont++;
       } 
   }
   cout<<y<<endl<<cont<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}

Obs:

O programa deveria ler um arquivo texto, mostrar os elementos do arquivo na tela, calcular a media desses elementos e mostra-la na tela e mostra na tela quantos números que o arquivo contem menores q um número digitado pelo usuário.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...