1234567891011121314151617181920212223242526 |
-
- /**
- * Write a description of class UseIO here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class UseIO
- {
- // instance variables - replace the example below with your own
- TextIO test = new TextIO();
-
- public UseIO(){};
-
- public String lazyWriteDouble(double number, int align, int frac){
- return test.writeDouble(number,align,frac);
- }
-
- public String lazyWriteInt(int number, int align){
- return test.writeInt(number,align);
- }
-
-
-
- }
|