eclipse 的输入输出练习
Posted xoxobool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse 的输入输出练习相关的知识,希望对你有一定的参考价值。
public void main(String[]args){ //实例化输入扫描器 //System.in 输入流 Scanner sc = new Scanner(System.in); System.out.print("请输入名称:"); //等待输入 String strin =sc.nextLine(); // 输出接收的内容 System.out.println("你输入的名称是:" + strin); }
2.输入圆的半径,计算圆的周长和面积
package com.hanqi.practice; import java.util.Scanner; public class Cirtle { public static void main(String[] args) { // TODO 自动生成的方法存根 Scanner sc =new Scanner (System.in); final double PI =3.14; System.out.println("请输入半径的大小"); int r =sc.nextInt(); System.out.println("圆的周长为:"+2*PI*r); System.out.println("圆的面积为:"+PI*r*r); } }
输出结果
以上是关于eclipse 的输入输出练习的主要内容,如果未能解决你的问题,请参考以下文章
片段(Java) | 机试题+算法思路+考点+代码解析 2023
数组的使用eclipse调试程序练习小demo以及方法的定义和重载
java缓冲字符字节输入输出流:java.io.BufferedReaderjava.io.BufferedWriterjava.io.BufferedInputStreamjava.io.(代码片段