Write a program in C++ to check whether a number is a Pronic Number or Heteromecic Number or not
- برمجة سي بلس بلس
- برمجة
- 2021-05-14
- MarwaMohammed
الأجوبة
#include<bits/stdc++.h>
using namespace std;
int main()
{
int prno,i,n,flg;
cout << "\n\n Check whether a number is a Pronic Number or Heteromecic Number or not: \n";
cout << " ----------------------------------------------------------------------------\n";
cout << " Input a number: ";
cin >> prno;
for(i=1;i<=prno;i++)
{
if(i*(i+1)==prno)
{
flg=1;
break;
}
}
if(flg==1)
{
cout << " The given number is a Pronic Number."<<endl;
}
else
{
cout << " The given number is not a Pronic Number."<<endl;
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال