Advertisement
fellpz

Idade incompleto

Mar 16th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <stdlib.h>
  4.  
  5. using namespace std;
  6.  
  7. int main ()
  8. {
  9.     int i, pacientes, idade;
  10.  
  11.     cout<<"Informe a quantidade de pacientes: ";
  12.     cin>>pacientes;
  13.  
  14.     i = 0;
  15.     while (i < pacientes)
  16.         {
  17.         cout<<"Informe a idade do paciente "<<i+1<<": ";
  18.         cin>>idade;
  19.        
  20.         i++;
  21.         }
  22.     /*cout<< "A quantidade de pacientes eh: "<<pacientes<<endl;
  23.     cout<< "As notas foram: "<<notas<<endl;
  24.     cout<< "A media da turma eh: "<<somanota/alunos<<endl;*/
  25.  
  26.     system("PAUSE");
  27.     return 0;
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement