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

为什么赋值时,three前不加int

public class HelloWorld{
    public static void main(String[] args) {
     int one = 10 ;
        int two = 20 ;
        int three = 0 ;
         three=one+two;
        System.out.println("three=one+two==>"+three);
         three+=one;
        System.out.println("three+=one==>"+three);
         three-=one;
        System.out.println("three-=one==>"+three);
         three*=one;
        System.out.println("three*=one==>"+three);
         three/=one;
        System.out.println("three/=one==>"+three);
         three%=one;
        System.out.println("three%=one==>"+three);

正在回答

3 回答

 因为第一次是int three=0 是初始化three为0,后面每次在这个int初始化基础上再次对three进行赋值,所以后面不用在加int了,如果加了int,后面再次赋值是在后面你再int基础上进行赋值的

1 回复 有任何疑惑可以回复我~

这道题的代码:

int one = 10 ;
    int two = 20;
   int three = 0 ;
   int as=one+two;
   int sw=two+two;
   int dw=two+two-one;
   int ad=(one+two)*one;
   int asd=(ad/30)+two;
   int sc=(one+two)%(one+two);
  
  
   System.out.println("three=one+two==>"+as);
   System.out.println("three+=one==>"+sw);
   System.out.println("three-=one==>"+dw);
   System.out.println("three*=one==>"+ad);
    System.out.println("three/=one==>"+asd);
   System.out.println("three%=one==>"+sc);

1 回复 有任何疑惑可以回复我~

three只是个变量名,使用前已经用int定义了,所以再使用的时候不需要再定义了

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么赋值时,three前不加int

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