math_paper 0.3.5

A simple dynamic library to generate a math paper with Java Native Method
Documentation

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);
}