练习

package lianxi;

public class lianxi {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根
        
        
        //角的度数
        
        int x=120;
        
        
      
        if (x>0&&x<90)
        
        System.out.println("锐");
        
        else if(x==90)
        
           {System.out.println("直");}
        
        else if (x>90&&x<180) 
            {System.out.println("钝");}
        
        else if (x>180)
        {System.out.println("还没学呢");}
原文地址:https://www.cnblogs.com/ljxe/p/5018269.html