標題:
209-象限座標
[打印本頁]
作者:
許承鴻
時間:
2018-6-26 18:41
標題:
209-象限座標
import java.util.*;
public class JPD02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
public static void test() {
}
}
作者:
張閎鈞
時間:
2018-6-26 19:42
import java.util.Scanner;
public class JPA01 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
public static void test() {
System.out.print("請輸入x座標:");
float x=keyboard.nextFloat();
System.out.print("請輸入y座標:");
float y=keyboard.nextFloat();
if(x>0)
{
if(y>0)
{
System.out.printf("(%.2f,%.2f)在第一象限\n",x,y);
}
else if(y<0)
{
System.out.printf("(%.2f,%.2f)在第四象限\n",x,y);
}
else
{
System.out.printf("(%.2f,%.2f)在x軸上\n",x,y);
}
}
else if(x<0)
{
if(y>0)
{
System.out.printf("(%.2f,%.2f)在第二象限\n",x,y);
}
else if(y<0)
{
System.out.printf("(%.2f,%.2f)在第三象限\n",x,y);
}
}
else
{
if(y==0)
{
System.out.printf("(%.2f,%.2f)在原點上\n",x,y);
}
else
{
System.out.printf("(%.2f,%.2f)在y軸上\n",x,y);
}
}
}
}
複製代碼
作者:
巫沛庭
時間:
2018-6-26 19:54
package test;
import java.util.Scanner;
public class JPA02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
test();
test();
test();
test();
}
static void test() {
System.out.print("請輸入x座標 : ");
int x=keyboard.nextInt();
System.out.print("請輸入y座標 : ");
int y=keyboard.nextInt();
if(x>0)
{
if(y>0)
{
System.out.println("座標值+在第一象限");
}
else if(y<0)
{
System.out.println("座標值+在第四象限");
}
else
{
System.out.println("座標值+在x軸上");
}
}
else if(x<0)
{
if(y>0)
{
System.out.println("座標值+在第二象限");
}
else if(y<0)
{
System.out.println("座標值+在第三象限");
}
else
{
System.out.println("座標值+在y軸上");
}
}
else{
if(y==0)
{
System.out.println("座標值+在原點上");
}
else{
System.out.println("座標值+在y軸上");
}
}
}
}
複製代碼
作者:
張閎鈞
時間:
2018-6-26 19:56
import java.util.Scanner;
public class JPA01 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
public static void test() {
System.out.print("請輸入x座標:");
float x=keyboard.nextFloat();
System.out.print("請輸入y座標:");
float y=keyboard.nextFloat();
if(x>0)
{
if(y>0)
{
System.out.printf("(%.2f,%.2f)在第一象限\n",x,y);
}
else if(y<0)
{
System.out.printf("(%.2f,%.2f)在第四象限\n",x,y);
}
else
{
System.out.printf("(%.2f,%.2f)在x軸上\n",x,y);
}
}
else if(x<0)
{
if(y>0)
{
System.out.printf("(%.2f,%.2f)在第二象限\n",x,y);
}
else if(y<0)
{
System.out.printf("(%.2f,%.2f)在第三象限\n",x,y);
}
else
{
System.out.printf("(%.2f,%.2f)在x軸上\n",x,y);
}
}
else
{
if(y==0)
{
System.out.printf("(%.2f,%.2f)在原點上\n",x,y);
}
else
{
System.out.printf("(%.2f,%.2f)在y軸上\n",x,y);
}
}
}
}
複製代碼
作者:
巫晉宇
時間:
2018-6-26 20:01
package jihgh;
import java.util.Scanner;
public class dbxdbff {
static Scanner k = new Scanner(System.in);
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
test();
test();
test();
test();
}
private static void test() {
System.out.print("請輸入艾克斯和歪");
double x=k.nextDouble();
double y=k.nextDouble();
if(x>0)
{
if(y<0)
{
System.out.printf("<%.2f,%.2f>在第四象限",x,y);
}
else if(y>0)
{
System.out.printf("<%.2f,%.2f>在第一象限",x,y);
}
else if(y==0)
{
System.out.printf("<%.2f,%.2f>在x軸",x,y);
}
}
if(x<0)
{
if(y<0)
{
System.out.printf("<%.2f,%.2f>在第三象限",x,y);
}
else if(y>0)
{
System.out.printf("<%.2f,%.2f>在第二象限",x,y);
}
else if(y==0)
{
System.out.printf("<%.2f,%.2f>在x軸",x,y);
}
}
else if(x==0)
{
if(y>0 ||y<0)
{
System.out.printf("<%.2f,%.2f>在y軸",x,y);
}
else if(y==0)
{
System.out.printf("<%.2f,%.2f>在原點",x,y);
}
}
}}
作者:
張閎鈞
時間:
2018-7-3 18:47
1
2
3
4
5
6
7
8
9
10
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2