divide two numbers using + opertor

package testpacknm;

import java.util.Scanner;

public class testcnm {
    public static void main(String[] args)                  {
        int x = 44, y = 7;
        int res = -1;
        for (int i = 0; i <= x; i += y) {
            res++;
        }
        System.out.println("The product of " + x + " and " + y + " is " + res);
    }
}

 输出

The product of 44 and 7 is 6

猜你喜欢

转载自www.cnblogs.com/sea-stream/p/12010326.html