+ 1
What is the mistake in my code
The tell me package system doesn't exist import java.util.Scanner; class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); int num1 = read.nextInt(); int num2 = read.nextInt(); //your code goes here double p= Math.pow(num1 , num2); ststem.out.println (p); } }
5 ответов
+ 1
Capital S in System.out.println();
Read carefully... java is case sensitive
+ 2
Spelling mistake in
System.out.println(p);
not 'stsment'
+ 1
When I run it ,They tell me system package doesn't exist
+ 1
Thank you bro😘
+ 1
You're welcome..