📄 mainclass.java
字号:
package com.edujinionline.tutorials.webservices;
/**
*
* MainClass - The entry point of the application.
* <br/>
* For terms and usage, please see the LICENSE file provided alongwith or
* contact <a href='mailto:copyright@edujinionline.com'>copyright@edujinionline.com</a>
* <br/>
* <a href='http://www.edujinionline.com'>http://www.edujinionline.com</a>
*
* @author Gaurav Vaish
* @version 1.0
* @copyright (C) 2006, Edujini (www.edujinionline.com)
*/
public class MainClass
{
/**
* Entry point of the application
*
* @param args
* Arguments to the main method
*/
public static void main(String[] args)
{
double x = 34.56;
double y = 45.67;
double z = BasicWebServicesClient.testAdd(x, y);
System.out.printf("%f + %f = %f", x, y, z);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -