Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. //© A+ Computer Science - www.apluscompsci.com
  2. //Name -
  3. //Date -
  4. //Class -
  5. //Lab -
  6.  
  7. import java.util.ArrayList;
  8. import java.util.Scanner;
  9. import static java.lang.System.*;
  10.  
  11. public class NumberAnalyzer
  12. {
  13. private ArrayList<Number> list;
  14.  
  15. public NumberAnalyzer()
  16. {
  17.  
  18. }
  19.  
  20. public NumberAnalyzer(String numbers)
  21. {
  22.  
  23. }
  24.  
  25. public void setList(String numbers)
  26. {
  27.  
  28.  
  29.  
  30. }
  31.  
  32. public int countOdds()
  33. {
  34. int oddCount=0;
  35.  
  36.  
  37.  
  38. return oddCount;
  39. }
  40.  
  41. public int countEvens()
  42. {
  43. int evenCount=0;
  44.  
  45.  
  46.  
  47. return evenCount;
  48. }
  49.  
  50. public int countPerfects()
  51. {
  52. int perfectCount=0;
  53.  
  54.  
  55.  
  56. return perfectCount;
  57. }
  58.  
  59. public String toString( )
  60. {
  61. return "";
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement