qq_慕娘6273624
2019-04-19 22:14
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);
双引号引起来的是字符,直接显示的部分,加号是 把 three 和字符 分隔开 如果()里面没有字符 就不用加+号
引号里写的东西就是你想打出来的东西,你写什么进去,就会原封不动打出来。以System.out.println("three=one+two==>"+three);这一句为例子,你写“three=one+two==>”
运行出来就是three=one+two==>;+表示加上,+three,意思是除了要print出前面引号内的内容,还要print three所代表的值,也就是30。 这一整句话效果就是print出three=one+two==>30,然后换行
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题