remove nonsense code that i added

This commit is contained in:
Tomáš Vlček 2026-03-19 21:41:38 +00:00
parent 7ef7148e53
commit 7d4c76c3d4

View File

@ -68,13 +68,6 @@ int main()
bool foundEqualSign = false;
char op1 = 'N'; //N = 'None/NIC'
//Ak je prazdny char na zaciatku, tak ocakavaj dalsi riadok
if (line[0] == ' ')
{
LinesOnInputCount += 1;
continue;
}
for (int i = 0; strBuffer[i] != '\0'; i++)
{
bool isNegativeSign = false;
@ -159,10 +152,7 @@ int main()
}
else
{
for (int i = 0; i <= LinesOnInputCount; i++)
{
printf("OK\n");
}
printf("OK\n");
}
}
}