Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (21 loc) · 335 Bytes

File metadata and controls

25 lines (21 loc) · 335 Bytes
/**
 * Opines on the user's age
 */

// FIXME there's a bug somewhere...

#include <stdio.h>
#include <cs50.h>

int main(void)
{
  printf("How old are you? ");
  int age = GetInt();
  
  if (age = 10)
  {
    printf("The big 1 0. You're getting old.\n");
  }
  else 
  {
    printf("You gotcher whole life aheddaya.\n");
  }
}