码迷,mamicode.com
首页 > 其他好文 > 详细

divide two numbers using + opertor

时间:2019-12-09 13:31:14      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:oid   package   void   sys   bsp   rto   nbsp   scan   scanner   

 

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

 

divide two numbers using + opertor

标签:oid   package   void   sys   bsp   rto   nbsp   scan   scanner   

原文地址:https://www.cnblogs.com/sea-stream/p/12010326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!