It only shows sign in and when I click on it, it shows the same screen. I ...Read more
Ask Mitra Latest Questions
Is anyone facing restarting issue in Samsung galaxy f22 after updating to android 12. I tried some possible solutions like turning it off from setting, resetting all settings, uninstalling all apps. What is the solution?
What is the current status of java Android developer in nepal?
For the above question i tried below programs, but when i run it takes output more than numbers entered by user in terminal and doesn’t stop neither shows the desired output. import java.util.Scanner; public class UserOriented { publicstaticvoidmain(String[] args) { Scannersc=newScanner(System.in); try { System.out.println(“Enter the total ...Read more
I am using this java code to print the factorial of any number. // Write a function to find the factorial of n numbers import java.util.Scanner; public class Factorial { publicstaticvoidmain(String[] args) { Scannersc=newScanner(System.in); try { System.out.println(“Enter any number to find it’s factorial”); Longnumber=sc.nextLong(); if (number==0) { System.out.println(“The factorial of ...Read more