c语言。这个开头为什么可以这样写?求佬解释一下这个开头
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define ovo system("pause")
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define ovo system("pause")
void solve()
{
int n;
scanf("%d", &n);
if(n%4==0||n%4==3)
{
puts("0");
}
else
{
puts("1");
}
}
int main()
{
int T = 1;
//scanf("%d", &T);
while (T--)solve();
ovo;
return 0;
}