最新回答 / 廾匸
因为每个月是4周,我们要算出是第几个月,就用第几周除以4就好啦,不过我们还要考虑int只能存储整形,所以当有余数的时候就再加上1,比如是第五天,int型的5/4就会余下来一周,那么这一周已经是下一个月的了,所以加上1就好啦!
2022-12-09
最新回答 / 慕先生2348631
public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three=0; three=one+two; System.out.println("three=one+two==>"+three); three+=one; ((SYstm)).out.println(...
2022-11-24
最新回答 / 比奇堡大亨
老师,我想问一下IntelliJ IDEA Community Edition 这款软件可以切换成中文模式吗?我这是下载的2023版本的软件有些功能排放的位置与授课教程中演示的大相同,每次都要进行翻译搜索😥
2022-11-19
最新回答 / 慕函数7131464
17行count已经被定义过,你就不能再用了,改成i好一些public class HelloWorld { public static void main(String[] args) { // 变量保存成绩 int score = 53; // 变量保存加分次数 int count = 0; //打印输出加分前成绩 System.out.pri...
2022-10-22