※ 引述《lisa3f0308 (huchishan)》之铭言:
: 大家好,小弟是JAVA新手,最近刚学到JAVA FOR 循环,在这两道题目出现问题,希望能
: 帮我解?
差不多是答案了,请自行转 Java 程式码
: 1.输入两个整数,输出两整数之间(含)所有整数的和(FOR 循环)
sum <- 0
for n from min to max step 1 do
sum <- sum + n
end
: 2.输入任意正整数 N (N > 15),输出 1 至 N 中, 3 的倍数、5 的倍数、及 15 的
: 倍数(不包括在 3 或 5 的倍数中) 之数值个数。(FOR 循环)
n_3 <- 0
n_5 <- 0
n_15 <- 0
for i from 1 to N step 1 do
if i % 15 == 0 then
n_15 <- n_15 + 1
else if i % 5 == 0 then
n_5 <- n_5 + 1
else if i % 3 == 0 then
n_3 <- n_3 + 1
end
end
: 感谢大大提醒,补上不完整的
I/O 部分请自行补完
: 1.public class test{
: public static void main(String[]args){
: System.out.print("输入起始值");
: Scanner sc = new Scanner(System.in);
: int I=scanner.nextInt();
: 然后就没头绪了
: 2.
: 待更