Trending ▼   ResFinder  

ICSE − Q & A

475 Users in the Group
Moderator: Trisha Pattnaik  
+Join

Ask a Question

Answer a Question!

ResFinder - Thousands of Practice Papers

code for automorphic number below
import java.io.*;
public class Automorphic
{
    public static void main(String args[])throws IOException
     { 
         BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
         System.out.println("Enter a no.");
         int n=Integer.parseInt(br.readLine());
         int s= n*n;
         int c=0;
         while(n>0)
         {
             int rem1=n%10;
             int rem=s%10;
             if(rem1!=rem)
             {
                 c++;
                 
                }
                n=n/10;
                s=s/10;
            }
            if (c==0)
           { System.out.println("Automorphic");
            }else
            {System.out.println("not");
        }
    }
}
asked by Bhavesh Choudhari (bhavesh988) 8 years ago
0

+ 1 more questions by bhavesh988  

what is the difference between writing a program with and without return type?? give examples as well.
asked by Vijay Kr (krvijay28) 8 years ago
0
Guys, when they say use comment lines should we write comments wherever possible while writing the program or...is it something else?

(also do you know what are the most predicted prog. questions? :/ )

Thanks!
asked by Tabassum (thesilverlining) 8 years ago
1
Instance variables are class variables right? If not whats the difference?
asked by Abhishek Agrawal (agrek) 8 years ago
1

+ 2 more questions by agrek  

Is it compulsory to write comments ?
asked by Prateek Rawat (prateek25) 8 years ago
2

+ 3 more questions by prateek25  

Guys one doubt : can the actual and the formal variables be the same ??
Like boolean b(int a,int b)
And then in main ()
on.b(a,b)
Plz I'm having this confusion for a month;!!
asked by Abhishek Shyam (abhibenne) 8 years ago
2
Guys can u sort this array for me?
String array = {"q" , "s", "a", "y", "b"};

Thanks
asked by Chelsea Dcosta (che777) 8 years ago
4
can someone tell me which paper to go through like which one is important except the boards(all) and specimen paper2015
asked by Pj Pj (pj2000) 8 years ago
1

+ 2 more questions by pj2000  

GUYS GREAT  NEWS ...........
.
.
.
.
.
.
.
.
Only 19 hours to freedom .
asked by The Dark Lord (shashank44thool) 8 years ago
3
Name the two real literals of java. Mention the size of each, in bytes.
asked by Lord Roshan the Great (lordroshan) 8 years ago
2

<< Prev

    Page 11    

Next Page >>


© 2010 - 2024 ResPaper. Terms of ServiceContact Us Advertise with us