首页 > 代码库 > eclipse 的输入输出练习
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 的输入输出练习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。