Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //1-й
- package Gauss;
- import java.io.*;
- import java.util.*;
- import javax.imageio.stream.FileImageInputStream;
- public class Gauss {
- public StreamTokenizer inf;
- public PrintWriter outf;
- public PrintWriter out;
- float eps = (float)0.00001;
- public static void main(String[] args)throws Exception {
- new Gauss().run();
- }
- }
- //2-й
- package GaussMainEl;
- import java.io.*;
- import java.util.*;
- import Gauss.Gauss;
- public class GaussMainEl {
- public static void main(String[] args)throws Exception {
- new GaussMainEl().run();
- }
- public void run() throws Exception{
- new Gauss().run();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment