Write a code to find out all positive whole numbers x & y satisfying the equation x*y = 130
Answers
Answered by
0
Step-by-step explanation:
essitdyidkhdysthxhz.gw
g
d
f
Answered by
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