如何用java编写程序:提示用户输入一个点(x,y)?

如何用java编写程序:提示用户输入一个点(x,y)?,第1张

import java.util.Scanner\x0d\x0apublic class E3_22 {\x0d\x0a public static void main(String[] args) {\x0d\x0a Scanner input = new Scanner(System.in)\x0d\x0a System.out.print("输入十字坐磨喊标系中瞎者野的一个点,例如嫌明 4 5 :")\x0d\x0a double x = input.nextDouble()\x0d\x0a double y = input.nextDouble()\x0d\x0a \x0d\x0a double distance = Math.pow((x * x + y * y) , 0.5)\x0d\x0a \x0d\x0a if (distance 回答于 2022-12-11

<!doctypehtml>

<html>睁简

<head>

<metacharset="UTF-8">

<title>Document</title>

</head>

<body>

<buttononclick="mal()">第一种:alert</button>

<buttononclick="mpro()">第二种:prompt</button>

<buttononclick="mcon()">第三种:confirm</button>

<script>

functionmal(){

alert('这是一脊闹个普通的提示框')

}

functionmpro(){

varval=prompt('这是一个可输入的提示框','这个参数为输入框默认值,可以不填哦')

//prompt会把输入框的值返回给你

}

functionmcon(){

varboo=confirm('这是一个可樱早罩选择的提示框,3种提示方式,学会了吗?')

//confirm会返回你选择的选项,然后可以依据选择执行逻辑

if(boo){

alert('学会了,真聪明')

}else{

alert('再来一遍吧')

}

}

</script>

</body>

</html>


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

原文地址: http://outofmemory.cn/yw/12386681.html

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

发表评论

登录后才能评论

评论列表(0条)

保存