123456789101112131415161718192021222324252627282930313233 |
-
- public class Help
- {
- public void help(){
-
-
- }
-
- public static String text(){
- return "To add 2 numbers: input \"add\"\n" +
- "To subtract 2 numbers: input \"subtract\"\n" +
- "To mulitply 2 numbers: input \"multiply\"\n" +
- "To divide 2 numbers: input \"divide\"\n" +
- "To find the square of a number: input \"square\"\n" +
- "To find the square root of a number: input \"square root\"\n" +
- "To raise one number to the power of another: input \"exponent\"\n" +
- "To find the inverse value of a number: input \"inverse\"\n" +
- "To invert a number from positive to negative: input \"invert\"\n" +
- "To find the sine of an angle: input \"sin\"\n" +
- "To find the cosine of an angle: input \"cos\"\n" +
- "To find the tangent of an angle: input \"tan\"\n" +
- "To find the cotangent of an angle: input \"cot\"\n" +
- "To find the secant of an angle: input \"sec\"\n" +
- "To find the cosecant of an angle: input \"csc\"\n" +
- "To find the inverse sine of an angle: input \"arcsin\"\n" +
- "To find the inverse cosine of an angle: input \"arccos\"\n" +
- "To find the inverse tangent of an angle: input \"arctan\"\n" +
- "To choose radians or degrees, when prompted input:\"radians\" or \"degrees\"\n" +
- "To choose a different display, input display type \"decimal\", \"binary\", \"hexidecimal\" or \"octal\"\n"
- ;
- }
- }
|