Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find Harshad Number between 1 to 100

C++ Numbers: Exercise-21 with Solution

Write a program in C++ to find Harshad Number between 1 to 100.

Sample Solution:

C++ Code :

#include<bits/stdc++.h>
using namespace std;
bool chkHarshad(int n)
{
    int s = 0;
	int tmp;
    for (tmp=n; tmp>0; tmp /= 10)
        s += tmp % 10;
    return (n%s == 0);
}
int main()
{
    int i;
 cout << "\n\n Find Harshad Numbers between 1 to 100: \n";
 cout << " ---------------------------------------------------\n";
 cout << " The Harshad Numbers are: "<<endl;
for(i=1;i<=100;i++)
{
     if( chkHarshad(i))
        cout << i<<" ";
}
        cout << endl;

}

Sample Output:

 Find Harshad Numbers between 1 to 100:                                                              
 ---------------------------------------------------                                                 
 The Harshad Numbers are:                                                                            
1 2 3 4 5 6 7 8 9 10 12 18 20 21 24 27 30 36 40 42 45 48 50 54 60 63 70 72 80 81 84 90 100

Flowchart:

Flowchart: Find Harshad Number between 1 to 100
Flowchart: Find Harshad Number between 1 to 100

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to check if a number is Harshad Number or not.
Next: Write a program in C++ to check whether a number is a Pronic Number or Heteromecic Number or not.

What is the difficulty level of this exercise?