1
0
Fork 0
Advent2021/Day 1/Marcus/cpp/part1.cpp

20 lines
249 B
C++
Raw Permalink Normal View History

2021-12-09 06:11:44 +00:00
#include <iostream>
using namespace std;
int main()
{
int i1, i2, count=0;
cin >> i1;
while(cin >> i2)
{
if (i2 > i1) count++;
i1 = i2;
}
cout << count << endl;
return 0;
2021-12-02 05:25:07 +00:00
}