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

 

posted @ 2019-12-09 12:30  anobscureretreat  阅读(154)  评论(0编辑  收藏  举报