我想在Eclipse中用Java編寫一個程序,告訴我,如果我可以製作三角形。這是我的代碼:Java中的這段代碼有什麼問題?
import java.io.IOException;
public class haromszog {
public static void main(String[] args) throws IOException {
int a;
int b;
int c;
System.out.print("Please insert the 'a' side of the triangle:");
a = System.in.read();
System.out.print("Please insert the 'b' side of the triangle:");
b = System.in.read();
System.out.print("Please insert the 'c' side of the triangle:");
c = System.in.read();
if ((a+b)>c)
{
if ((a+c)>b)
{
if ((b+c)>a)
{System.out.print("You can make this triangle");
}
else
System.out.print("You can't make this triangle");
}
}
}
}
Eclipse的,可以運行它,但它寫道:
請插入三角形的 'A' 方:(比如我寫:)5
請插入三角形的 'b' 側:
請插入三角形的 'c' 的側:
你不能讓這個三角
我不能寫任何東西到B和C的一面。這有什麼問題?
[與創建一個三角形的循環]的可能重複(HTTP:/ /stackoverflow.com/questions/11409621/creating-a-triangle-with-for-loops) – jww 2014-08-18 04:29:45