Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

171
Visualizações
How to calculate numbers with loop in javascript

I am working with javascript, i have static value(15000) and i want 15000*1.5/100+15000 with 90 times,i mean after getting result i want to again calculate that value(result/output,for example 225) 90 times,How can i do this ?

<script>
const cars ="15000";
for (let i = 0; i < 90; i++) {
   cars = cars*1.5/100+15000;
   cars --;
 }
 </script>

In c++ i did with following code but now i want to convert to javascript code

#include <iostream>

int main() {
    float a,b,c;
    std::cin>>b;
    for(int i=0;i<90;i++)
    {
        a=b*1.5/100;
        c=a+b;
        std::cout<<c<<"\n";
        b=c;
    }
    std::cout << "Hello world!"<<c;

    return 0;
}

My expected output is

15000
15225
15453.4
15685.2
15920.5
16159.3
16401.6
...
about 4 years ago · Santiago Gelvez
2 Respostas
Responde à pergunta

0

You can do something like this:

let cars = 15000;
for (let i = 0; i < 90; i++) {
  console.log(parseFloat(cars.toFixed(1))); // set 1 decimal and print it
  cars = (cars * 1.5) / 100 + cars; // same function as c++
}
about 4 years ago · Santiago Gelvez Relatório

0

You can simply use an array and push the result into for each iteration of the loop, then use the [i] index to use the new value. Finally you just have to output the array and you already have all your data stored.

let carsArray = [15000];

for (let i = 0; i < 90; i++) {
   cars = carsArray[i]*1.5/100 + carsArray[i];
   carsArray.push(cars);
 }
 
 console.log(carsArray);
 
 

about 4 years ago · Santiago Gelvez Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda