Construir um programa, usando o comando while, para aceitar a digitação de 3 números, multiplicando cada um por 4 e somando estes resultados. Ao final, mostre o total obtido. Resposta em C++. Obrigado
Respostas
respondido por:
1
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
int vtrNum[3],i;
while(i<3){
cin >> vtrNum[i];
vtrNum[i]*=4;
i++;
}
cout << vtrNum[0]+vtrNum[1]+vtrNum[2]<<endl;
system("PAUSE");
}
#include <cstdlib>
using namespace std;
int main(){
int vtrNum[3],i;
while(i<3){
cin >> vtrNum[i];
vtrNum[i]*=4;
i++;
}
cout << vtrNum[0]+vtrNum[1]+vtrNum[2]<<endl;
system("PAUSE");
}
Perguntas similares
7 anos atrás
7 anos atrás
7 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás
9 anos atrás