“cannot find symbol - class Scanner” error

前端 未结 7 1583
醉话见心
醉话见心 2020-12-18 00:04

This is my Code

public class Workshop3
{
    public static void main (String [] args)
    {
        System.out.println (\"please enter radius of circle\");
          


        
7条回答
  •  北海茫月
    2020-12-18 00:11

    Please add the following line on top of your code

    *import java.util.*;*
    

    This should resolve the issue

提交回复
热议问题