mirror of
https://github.com/peter-tanner/advent-of-code-2021.git
synced 2024-11-30 11:10:20 +08:00
22 lines
452 B
C
22 lines
452 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <limits.h>
|
||
|
|
||
|
int main(int argc, char const *argv[])
|
||
|
{
|
||
|
FILE *p_file = fopen("input", "r");
|
||
|
char line[50];
|
||
|
uint increases = 0;
|
||
|
uint previous_depth = 0;
|
||
|
while (fgets(line, sizeof line, p_file) != NULL)
|
||
|
{
|
||
|
if (atoi(line) > previous_depth)
|
||
|
{
|
||
|
increases++;
|
||
|
}
|
||
|
previous_depth = atoi(line);
|
||
|
}
|
||
|
printf("%u\n", increases - 1);
|
||
|
return 0;
|
||
|
}
|