DAY6 基本for语句

1.1.测试addToN方法

什么是addToN方法?将一个值(通常是1)加到输入的数字N上。此处是将1加到tempN上。tempN被设置为10,输出结果将显示“1加到10的结果”。

package basic;

 public static void forStatementTest() {
        int tempN = 10;
        System.out.println("1 add to " + tempN + " is: " + addToN(tempN));

这里将tempN设为0,再次调用addToN方法,输出“1加到0的结果”。

package basic;

tempN = 0;
       System.out.println("1 add to " + tempN + " is: " + addToN(tempN));

1.2测试tempStepLength方法

什么是tempStepLength方法?将一个值(通常是1或者其他指定的步长)以指定的步长加到一个输入数字N上。这个方法接受两个参数,一个是需要加的数字N,另一个是步长。

什么是步长?步长(Step Length)通常是指在某个操作或算法中每次增量的大小。在for循环中,步长用于定义每次循环迭代时控制变量的增量。例如:

package basic;

for (int i = 0; i < 10; i += 2) {
    System.out.println(i);
}

在这个例子中,i每次循环增加2,因此步长是2。循环将打印0,2,4,6,8。

测试tempStepLength方法

tempStepLength被初始化为1,表示在接下来的操作中,每次将要添加的步长1。又tempN被赋值为10。输出"1 add to " + tempN(这里是10) + " with step length " + tempStepLength(这里是1) + " is: " + addToNWithStepLength(tempN,tempStepLength)

addToNWithStepLength(tempN,tempStepLength是一个方法调用,传递了 tempN和 tempStepLength作为参数
什么是方法调用?addToNWithStepLength是方法名称,接受两个整数参数tempN和tempStepLength返回它们的和?

package basic;

int tempStepLength = 1;
        tempN = 10;
        System.out.println("1 add to " + tempN + " with step length " + tempStepLength + " is: " + addToNWithStepLength(tempN,tempStepLength));

步长为2的情况。

package basic;

tempStepLength = 2;
        System.out.println("1 add to " + tempN + " with step length " + tempStepLength + " is: " + addToNWithStepLength(tempN,tempStepLength));

2.for循环

2.1 addToN方法

int:返回类型是整数。
addToN:add to N,加到N,计算从1到给定整数N的所有整数之和。
paraN:要计算和的上限。
resultSum:用于存储从1到paraN的和,初始值为0。

package basic;

public static int addToN(int paraN) {
        int resultSum = 0;

for循环结构

初始化变量 i 为1,条件为 i 小于或等于 paraN,每次循环 i 自增1,并将当前的 i 值加到 resultSum 中。循环将依次迭代从1到 paraN 的每一个整数。最后返回 resultSum 的值,即1到 paraN 所有整数的和。与c语言相同。

package basic;

for (int i = 1; i <= paraN; i++) {
    resultSum += i;
} // Of for i
        
return resultSum;

2.2 tempStepLength方法

addToNWithStepLength: 方法的名称,意为“使用步长计算到N的和”。
int paraStepLength: 第二个参数,表示在累加过程中的步长。
其余同上。

package basic;

public static int addToNWithStepLength(int paraN, int paraStepLength) {
        int resultSum = 0;

for循环结构

for 循环从 1 开始,将 i 增加到 paraN。每次循环,i 的值增加 paraStepLength。这意味着在每次迭代中,并不简单地增加1,而是增加步长值(paraStepLength),此处与前一个方法不同。其余相同。

package basic;

for (int i = 1; i <= paraN; i += paraStepLength) {
    resultSum += i;
} // Of for i
            
return resultSum;

3.完整代码及运行结果

完整代码

package basic;

/**
 * This is the sixth code. Names and comments should follow my style strictly.
 * 
 * @author Song 2378922583@qq.com.
 * 
 */
public class ForStatement {
    
    /**
     * 
     * The entrance of the program.
     * 
     * @param args Not used now.
     * 
     */
    public static void main(String args[]) {
        forStatementTest();
    }// Of main
    
    /**
     * 
     *  Method unit test.
     * 
     */
    public static void forStatementTest() {
        int tempN = 10;
        System.out.println("1 add to " + tempN + " is: " + addToN(tempN));
        
        tempN = 0;
        System.out.println("1 add to " + tempN + " is: " + addToN(tempN));
        
        
        int tempStepLength = 1;
        tempN = 10;
        System.out.println("1 add to " + tempN + " with step length " + tempStepLength + " is: " + addToNWithStepLength(tempN,tempStepLength));
        tempStepLength = 2;
        System.out.println("1 add to " + tempN + " with step length " + tempStepLength + " is: " + addToNWithStepLength(tempN,tempStepLength));
    }// Of forStatementTest
    
    /**
     * 
     * Add from 1 to N.
     * 
     * @param paraN The given upper bound.
     * @return The sum.
     * 
     */
    public static int addToN(int paraN) {
        int resultSum = 0;
        
        for (int i = 1; i <= paraN; i++) {
            resultSum += i;
        } // Of for i
        
        return resultSum;
    }// Of addToN
        
    /**
     * 
     * Add from 1 to N with a step length.
     * 
     * @param paraN          The given upper bound.
     * @param paraStepLength The given step Length.
     * @return The sum.
     * 
     */
    public static int addToNWithStepLength(int paraN, int paraStepLength) {
        int resultSum = 0;
            
        for (int i = 1; i <= paraN; i += paraStepLength) {
            resultSum += i;
        } // Of for i
            
        return resultSum;
    }// Of addToNWithStepLength
        
}// Of class ForStatement

运行结果
1 add to 10 is: 55
1 add to 0 is: 0
1 add to 10 with step length 1 is: 55
1 add to 10 with step length 2 is: 25

…Program finished with exit code 0
Press ENTER to exit console.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值