Jump to content
Fórum Script Brasil
  • 0

Algoritmo


VitorFR

Question

Olá, galera tudo bom?

Estou com um exercicio de algoritmo, que o professor da faculdade passo para resolver, so que eu não estou entendendo como se faz.. é esse

5)Escreva um algoritmo que receba diariamente a digitação da temperatura de uma sala durante o mês de março, todos os dias, inclusive sábados, domingos e feriados, e ao final mostre a temperatura média, a maior e a menor temperatura digitada.

Se alguém puder me ajudar... abraços

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

PHP:

<?php
    class Tempo{
        var $total = 0,
            $media = 0,
            $maior = 0,
            $dias = 0;
        
        public function adiciona($temp){
            $temp = (int) $temp;
            $this->total += $temp; // Soma da temperatura de todos os dias
            $this->maior = $temp > $this->maior ? $temp : $this->maior; // Maior temperatura já registrada
            $this->dias++; // Número de dias registrados
            $this->media = $this->total/$this->dias; // Temperatura média
            return $this;
        }
    }
?>
java script:
var Tempo = {
    total: 0,
    media: 0,
    maior: 0,
    dias: 0,
    adiciona: function(temp){
        temp = parseInt(temp);
        this.total += temp;
        this.maior = temp > this.maior ? temp : this.maior;
        this.dias++;
        this.media = this.total/this.dias;
    }
}

Link to comment
Share on other sites

  • 0

Nessas linguagens que você citou eu nunca programei, mas fiz um exemplo em C++, que acredito estar mais próximo do que você precisa:

#include <iostream>

using namespace std;

class Tempo{
    public:
    void adiciona(int temp),
         getMedia();
    Tempo();
    
    private:
    int total, media, maior, dias;
};

Tempo::Tempo(){
    this->total = 0;
    this->media = 0;
    this->maior = 0;
    this->dias = 0;     
}

void Tempo::adiciona(int temp){
    this->dias++;
    this->total += temp;
    if(temp > maior)
        this->maior = temp;
    this->media = total/dias;
}

void Tempo::getMedia(){
    cout<<media<<"\n";     
}

main(){
    Tempo time;
    time.adiciona(30);
    time.adiciona(20);
    time.getMedia();
    system("PAUSE");
}

Edited by vini_loock
Link to comment
Share on other sites

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
      652k
×
×
  • Create New...