【Java入门】输入输出

【Java入门】输入输出,第1张

目录

一、输出

二、输入


一、输出

1.输出且换行:System.out.println();

public static void main(String[] args) {
        System.out.println("hello");
        System.out.println(1);
        System.out.println("hello"+2);

    }

控制台:

hello

1

hello2

2.输出不换行:System.out.print()

public static void main(String[] args) {
        System.out.print("hello");
        System.out.print(1);
        System.out.print("hello"+1);
    }

控制台:

hello1hello1 

3.格式化输出:System.out.printf("%d",1)

public static void main(String[] args) {
        System.out.printf("%d\n",12);
        System.out.printf("%s\n","hello");
    }

控制台:

12

hello

二、输入

在文件开头加

import java.util.Scanner;
import java.util.Scanner;


public class ScannerMain {
    public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);

        //输入字符串
        String str=scanner.nextLine();读入一行
//      String str=scanner.next();以空格结束
        System.out.println(str);

        //输入int类型的数据
        int n=scanner.nextInt();
        System.out.println(n);
        
        //输入浮点型数据
        float f=scanner.nextFloat();
        double d=scanner.nextDouble();
        
        //输入字符
        char a=scanner.next().charAt(0);
        System.out.println(a);
    }
}

 

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/868579.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存