标签:next 用户输入 蓝色 str main 输入 string print class
import java.util.Scanner; /** * @author 蓝色以太 * 要求用户输入宽和高,显示出长方形的面积。 */ public class Area { public static void main(String[] args) { Scanner sc=new Scanner(System.in); System.out.println("请输入长度:"); double length=sc.nextDouble(); System.out.println("请输入宽度:"); double width=sc.nextDouble(); System.out.println("长方形的面积为:"+length*width); } }
标签:next 用户输入 蓝色 str main 输入 string print class
原文地址:http://www.cnblogs.com/lanseyitai1224/p/7011448.html