为了账号安全,请及时绑定邮箱和手机立即绑定

帮我看一下为什么three前面为什么不能加int可以吗

public class HelloWorld{

    public static void main(String[] args) {

    int one = 10 ;

        int two = 20 ;

        int three = 0 ;

       int three = one+two;

         System.out.println("three = one +two ==>"+three);

        int three += one;

          System.out.println("three += one ==>"+three);

         int three *= one;

           System.out.println("three = *= one ==>"+three);

           int three /= one;

            System.out.println("three /= one ==>"+three);

            int three %=one;

             System.out.println("three %=one ==>"+three);

        

正在回答

0 回答

举报

0/150
提交
取消

帮我看一下为什么three前面为什么不能加int可以吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信