Math, asked by duhafayyaz8161, 11 months ago

Write a code to find out all positive whole numbers x & y satisfying the equation x*y = 130

Answers

Answered by sheshachouthani
0

Step-by-step explanation:

essitdyidkhdysthxhz.gw

g

d

f

Answered by achal1999sharma
0

Answer:

#include <iostream>

using namespace std;

int main()

{

  int n=130,i,j;

  for(i=1;i<131;i++)

  {

      for(j=1;j<131;j++)

      {

          if(i*j==130)

          {

              cout<<i<<" "<<j<<endl;

          }

      }

  }

  return 0;

}

Step-by-step explanation:

Similar questions