I am not able to make a program that can show all the Armstrong number between 100 to 1000.This is where I got so far;public class ForLoop { public static void main(String[] args) { int i; int j; int a=1; int b=1; int c=1; int r; r = a*100+b*10+c; c= c*c*c; a= a*a*a; b= b*b*b; j=a+b+c; for (i=100;i<1000;i=i+1) { if ((i==j)&(i==r)){ System.out.println(i+"is a Armstrong number"); } } }} above code give the answer but need to put every digit myself to do that.
855 visits
Outline:for loop - for loopന്റെ ആമുഖം. - for loop ന്റെ ഘടന. - loop വേരിയബിൾ. - loop കണ്ഡിഷൻ. - loop വേരിയബിളിന്റെ increment അല്ലെങ്കിൽ decrement. - loop ബ്ലോക്ക്. - loopന്റെ ഒഴുക്ക്. - loop ഉപയോഗിക്കുന്നത് കൊണ്ടുള്ള പ്രയോജനം.
for loop - for loopന്റെ ആമുഖം. - for loop ന്റെ ഘടന. - loop വേരിയബിൾ. - loop കണ്ഡിഷൻ. - loop വേരിയബിളിന്റെ increment അല്ലെങ്കിൽ decrement. - loop ബ്ലോക്ക്. - loopന്റെ ഒഴുക്ക്. - loop ഉപയോഗിക്കുന്നത് കൊണ്ടുള്ള പ്രയോജനം.
Show video info
Pre-requisite