Jump to content

Descobrir a idade maior


Milenna Fidelis

Recommended Posts

Tive uma questão na faculdade sobre descobrir a idade maior usando if(apesar de querer usar vetores). Esta aqui a solução para caso alguém precise:

#include <stdio.h>

int main(void) {
  int a, b, maior, c;
  printf("Insira uma idade: \n");
  scanf("%d", &a);
    printf("Insira outra idade: \n");
  scanf("%d", &b);
    printf("Insira mais uma idade: \n");
  scanf("%d", &c);
  if(a > b){
    maior = a;
  }else{
    maior = b;
  }if(maior > c){
    printf("A maior idade é: %d", maior);
  }else{
    maior = c;
    printf("A maior idade é: %d", maior);
  }
  return 0;
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.