(C++) - Дана програма, яка визначає останнє додатне і перше від'ємне число в масиві. Знайти і виправити синтак-сичні й логічні помилки

#include
using namespace std;
int main()
{
double size = 8;
double arr[size] = { -5.7, 6.0, 2, 0, -4.7, 6, 1, -4, 0 };
int positive = 0;
for (int i = size; i >= 0; i++)
{
if (arr[i] > 0)
{
positive = arr[i];
break;
}
}
int negative = 0;
for (int i = 0; i < size; i++)
{
if (arr[i] < 0)
{
negative = arr[i];
break;
}
}
cout << "Last positive number: " << positive << endl;
cout << "First negatine number: " << negative << endl;
return 0;
}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.