Fascinating Numbers : Some numbers of 3 digits or more exhibit a very interesting property. The property is such that, when the number is multiplied by 2 and 3, and both these products are concatenated with the original number, all digits from 1 to 9 are present exactly once, regardless of the number of zeroes. Algorithm Start x:=0 Print "Enter a number" Read x; count=0 i=1 if i<=9, go to step 8 or else go to step 24 j=i a=Integer.toString(x*2) b=Integer.toString(x*3) c=Integer.toString(x) t=Integer.parseInt(c+a+b) digit:=0 c=0 If t>0, go to step 16 or else go to step 21 digit=t%10 t=t/10 if digit==j, go to step 19 or else go to step 20 c++ Go to step 15 If c==1, go to step 22 or else go to step 23 count ++ i++. Go to step 7 If count==9, go to step 25 or else go to step 26 Print "The given number is fascinating number" Print "The given number is not a fascinating number" Stop Program Buffered Reader import java.io.*; class Fascinating { int x...