×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Java Examples : Frequency of the character in a paragraph Custom Exception Handling in Java
Numbers Program In Java Part 2 - Java
3054    Arnab De    12/09/2017

Some mathematical numbers are identified by different names. These names are given by different mathematicians. We can establish those numbers, logically by the Java program. For that we first know the mathematical definition of the numbers after then we must think how we can represent programmatically.

Write a program that displays all integers between the low and high that are the sum of cube of their digits. In other words, find all numbers XYZ such that XYZ=X3+Y3+Z3. try 100 for low and 1000 for high. [WBUT MCA 2014]

softetechnologies

import java.util.*;

public class Amstrong100to1000
{
public static void main(String []args)
{
int n,s=0,r;
int sn=100;
int temp;
while(sn<=1000)
{
n=sn;
s=0;
while(n>0)
{

softetechnologies

r=n%10;
s+=Math.pow(r,3);
n /=10;
}
if(s==sn)
{
System.out.println(sn + "");
}
sn++;
}
}
}

Java Examples : Frequency of the character in a paragraph Custom Exception Handling in Java
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
It is very simple to be happy, but it is very difficult to be simple.
Rabindranath Tagore
1095
57.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43527
01/01/2018     36477
25/06/2018     35475
28/06/2017     34547
02/08/2017     32975
01/08/2017     27458
06/07/2017     27205
15/05/2017     26840
14/07/2017     22455
21/04/2018     21107
softetechnologies