#include <iostream>
using namespace std;
int n, a=1, b=1;
double long c;
int main()
{
cout << "Podaj ile liczb Fibonacciego mam wyznaczyc: ";
cin >> n;
for(int i=0; i<n; i++)
{
a+b=c;
a=b;
b=c;
cout << c << endl;
}
return 0;
}
Witam wszystkich W programie wyskakuje mi taki błąd jak w tytule: lvalue required as left operand of assignment, jest to 15 linia kodu, nie bardzo rozumiem o co chodzi, więc bardzo proszę o pomoc