萌新求助
请制作一个输入10个值来计算偶数跟奇数的数量例:
输入 0 20 30 55 66 77 88 99 100 15
奇数:4
偶数:6
求各位大大帮忙{:5_100:} import java.util.Scanner;
public class test
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int jishu = 0, oushu = 0;
for (int i = 0; i < 10; i++)
{
int x = sc.nextByte();
if (x % 2 != 0)
jishu ++;
else
oushu ++;
}
System.out.println("奇数:" + jishu + "\n偶数:" + oushu);
}
} qiuyouzhi 发表于 2020-5-21 21:26
感谢大佬帮助。 我写的就是不能累计+1.... xumin79 发表于 2020-5-21 21:29
感谢大佬帮助。 我写的就是不能累计+1....
啊?
你把你的代码发出来 qiuyouzhi 发表于 2020-5-21 21:29
啊?
你把你的代码发出来
package csj;
import java.util.Scanner;
public class Xm12 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = 0;
int pcount = 0;
int mcount = 0;
while(true) {
System.out.println("请输入数字");
n = sc.nextInt();
for (int i = 0; i < 10; i++) {
if(n % 2 == 0) {
pcount += 1;
}else {
mcount +=1;
}
}
}
}
} qiuyouzhi 发表于 2020-5-21 21:29
啊?
你把你的代码发出来
不知道为啥一直跑偏{:5_100:} xumin79 发表于 2020-5-21 21:31
package csj;
import java.util.Scanner;
我的天哪,咋这么乱呢..
import java.util.Scanner;
public class test {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = 0;
int pcount = 0;
int mcount = 0;
System.out.println("请输入数字");
for (int i = 0; i < 10; i++)
{
n = sc.nextInt();
if(n % 2 == 0)
{
pcount += 1;
}
else
{
mcount +=1;
}
}
System.out.println("奇数:" + mcount + "\n偶数:" + pcount);
}
} qiuyouzhi 发表于 2020-5-21 21:35
我的天哪,咋这么乱呢..
还是得多练练{:5_100:}
页:
[1]