java 新手
Posted Doublekai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 新手相关的知识,希望对你有一定的参考价值。
public class hello{ public static void main(String args[]){ int a=23,b=32,c=34; int s=Math.max(a,c); System.out.println("max="+s); s=Math.min(b,c); System.out.print("min="+s);
写一些java与c语言的差别 在c语言中比较两个数的大小需要if在java中插入了很多函数,Math.max Math.min 等很多数学函数。
以上是关于java 新手的主要内容,如果未能解决你的问题,请参考以下文章