Jump to content
Fórum Script Brasil
  • 0

Estou Precisando De Um Exemplo


lord_e

Question

Ola pessoal ... estou com uma duvida sobre array muldimensional, comecei recentemente a utiizar o C++, estou utilizando uma apostila que fala sobre o assunto, mas nuam da nem um exemplo se alguém puder me ajudar sou grato desde já...

valeu

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

acredito que o exemplo abaixo deva ser de alguma utilidade. Ele verifica as notas dos alunos e imprime quantos foram aprovados e reprovados em determinada matéria

#include <stdio.h>
void main (void) {
  float alunos[10][4], aux;
  int i,j,REP=0,APR=0,FIN=0;
  for(i=0; i<10; i++) {
    for(j=0; j<3; j++) {
      printf("Digite a nota %d do aluno %d:\n", i+1, j+1);
      scanf("%f", &aux);
      alunos[i][j] = aux;
    }
  alunos[i][3] = (alunos[i][0]+alunos[i][1]+alunos[i][2])/3;
  if(alunos[i][3] < 3)
    REP = REP + 1;
  else 
    if(alunos[i][3] < 6)
      FIN = FIN + 1;
    else 
      APR = APR + 1;
  }
  for(i=0;i<10;i++) {
    for(j=0;j<4;j++)
      printf("%.2f\t", alunos[i][j]);
    printf("\n");
  }
  printf("Alunos aprovados: %d \n", APR);
  printf("Alunos na final: %d \n", FIN);
  printf("Alunos reprovados: %d \n", REP);
  scanf("%d",&APR);
}

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