selection does not contain a main type的问题
selection does not contain a main type的问题import java.util.Scanner;public class Population {private String name;private int population;private double growthRate;public void readInput(){Scanner keyboard = new Scanner(System.in);System.out.println("what is the species' name ");name = keyboard.nextLine();System.out.print("what is the popution of lll");population = keyboard.nextInt();while (population < 0);{System.out.println("population can not be negatived");System.out.print("Reenter population:");population = keyboard.nextInt();}System.out.println("Enter growth rate:");growthRate = keyboard.nextDouble();}public void writeOutput(){System.out.println("Name = " + name);System.out.println("Population = " + population);System.out.println("Goth rate = " + growthRate + "%");}}Java文件也在src下面,为什么就是不能运行呢?写的其他程序就能,怎么解决啊,不要找什么更改目录的回答了
最佳回答
没有静态的main(String args[])方法,程序无法直接启动!public static void main(String args[]){Population p = new Population ();p。readInput();p。writeOutput();}以上代码加入到类里面;
最新回答共有2条回答
-
2026-04-04 17:54:32欣喜的灰狼
回复没有静态的main(String args[])方法,程序无法直接启动!public static void main(String args[]){Population p = new Population ();p。readInput();p。writeOutput();}以上代码加入到类里面;
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
