forked from purushottamnawale/geeksforgeeks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArmstrong Numbers.cpp
More file actions
48 lines (44 loc) · 788 Bytes
/
Armstrong Numbers.cpp
File metadata and controls
48 lines (44 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//{ Driver Code Starts
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution
{
public:
string armstrongNumber(int n)
{
int sum = 0;
int originaln = n;
while (n > 0)
{
int lastdigit = n % 10;
sum += round(pow(lastdigit, 3));
n = n / 10;
}
if (originaln == sum)
{
return "Yes";
}
else
{
return "No";
}
}
};
//{ Driver Code Starts.
int main()
{
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
Solution ob;
cout << ob.armstrongNumber(n) << endl;
}
return 0;
}
// } Driver Code Ends