×
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
3464    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.
Swami Vivekananda
Education is not the amount of information that is put into your brain and runs riot there, undigest
Swami Vivekananda
1093
69.48
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     50604
25/06/2018     42594
01/01/2018     41776
28/06/2017     39558
02/08/2017     38347
01/08/2017     32571
06/07/2017     32268
15/05/2017     31724
14/07/2017     27857
11/09/2018     27596
softetechnologies