Untitled
Anonymous
plain_text
12/30/2023 9:19 PM
324 B
19
Indexable
#include <iostream>
using namespace std;
int main()
{
int k, b;
cin >> k >> b;
int mas[101] = {};
for(int x = 0; x <= 100; x++){
int y = k * x + b;
mas[x]= y;
cout << 'y' << '(' << x << ')' << '=' << y << endl;
}
}
Editor is loading...
Leave a Comment