Untitled

 avatar
unknown
plain_text
a year ago
243 B
3
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