Knowee
Questions
Features
Study Tools

class Test {   public static void main(String args[]) {       System.out.println(fun());   }   static int fun() {       static int x= 0;       return ++x;   }}

Question

class Test {   public static void main(String args[]) {       System.out.println(fun());   }   static int fun() {       static int x= 0;       return ++x;   }}
🧐 Not the exact question you are looking for?Go ask a question

Solution 1

The code you've written is in Java, but it contains an error. In Java, you cannot declare a variable as static inside a method. The static keyword in Java is used in the declaration of a class variable, which means it belongs to the class rather than any instance of the class.

Here's the corrected Knowee AI is a powerful AI-powered study tool designed to help you to solve study problem.

Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  

This problem has been solved

Similar Questions

class Test {   public static void main(String args[]) {       System.out.println(fun());   }   static int fun() {       static int x= 0;       return ++x;   }}

public class Example {public static void main(String[] args) {String str = "Hello";str.concat(" World");System.out.println(str);}}

public class Main { public static void main(String args[]) { System.out.print("Hello World "); System.out.println("Hello Know Program"); }}

Does the method call in the following method cause compile errors?  public static void main(String[] args) {   Math.pow(2, 4); }Group of answer choicesYesNo

class MyClass { String field1; void field2; double field3 int field4;}Select one or more:a. double field3b. void field2;c. int field4;d. String field1;

1/3

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.