math_paper 0.3.5

A simple dynamic library to generate a math paper with Java Native Method
Documentation
  • Coverage
  • 0%
    0 out of 37 items documented0 out of 18 items with examples
  • Size
  • Source code size: 14.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 843.6 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 31s Average build duration of successful builds.
  • all releases: 31s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • JCKeep

MATH-PAPER

A simple dynamic library to generate a math paper with Java Native Method. This library can easily to generate a math paper with primary, middel and high school. And it can make sure the question is correct.

Link to java native method

package com.example.demo;

import java.io.*;
import java.util.*;

public class PaperFactory {
  static {
    System.load("<path of this dynamic library>");
  }

  public static native String getPaper(String grade, String number);
}