-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCh41Ex1_2.java
More file actions
154 lines (138 loc) · 4.41 KB
/
Ch41Ex1_2.java
File metadata and controls
154 lines (138 loc) · 4.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import java.io.*;
import java.util.*;
/**
* Chapter 41 - The Fantastic for Statement Exercises 1-2
*
* @author TODO Your Name
* @version TODO Date
*
* @author Period - TODO Your Period
* @author Assignment - Ch41Ex1_2
*
* @author Sources - TODO list collaborators
*/
public class Ch41Ex1_2
{
private Scanner scan;
public Ch41Ex1_2()
{
scan = new Scanner( System.in );
}
/**
* TODO Description
*
* @ return number of years of supervision required by the sheep heard
*/
public int sheepHerdSize()
{
int count = 0;
double N = 20;
int c = 0;
for (int t = 0; t<=25; t++){
c++;
double parenthesis = (Math.pow(0.83, t) * 10) + 1;
N = 220/parenthesis;
System.out.println(N);
if (N<=80){
count++;
}
}
System.out.println(c);
return count;
}
/**
* TODO Description
*
* @return the largest integer and sum of the specified range of values
*/
public int[] maxIntsInFile( String fName, int numToRead ) throws FileNotFoundException
{
int sum = 0;
int max = 0;
try
{
if (new File( fName ).isFile())
{
scan = new Scanner( new File( fName ) ); // connect the Scanner to the file
}
else
{
scan = new Scanner( fName ); // connect the Scanner to the string
}
}
catch ( IOException i )
{
System.out.println( "Error: " + i.getMessage() );
}
// TODO complete method
for (int i = 0; i < numToRead; i++){
int num = scan.nextInt();
sum +=num;
if (num> max){
max = num;
}
}
return new int[] { max, sum };
}
/**
* Testing method: instantiates a Lesson15Exercises object and then invokes
* each method
*
* @param args command line parameters (not used)
* @throws FileNotFoundException
*/
public static void main( String[] args ) throws FileNotFoundException
{
Scanner kbd = new Scanner( System.in );
boolean done = false;
Ch41Ex1_2 exercise = new Ch41Ex1_2();
do
{
System.out.println();
System.out.println();
System.out.println( "Make a selection" );
System.out.println();
System.out.println( " (1) Sheep Herd Size");
System.out.println( " (2) Maximum of Integers in a File");
System.out.println( " (Q) Quit" );
System.out.println();
System.out.print( "Enter a choice: " );
String response = kbd.nextLine();
if ( response.length() > 0 )
{
System.out.println();
switch ( response.charAt( 0 ) )
{
case '1':
System.out.println("The sheep heard must be supervised for "
+ exercise.sheepHerdSize() + " years.");
break;
case '2':
System.out.print( "Enter name of the input file: " );
String fName = kbd.nextLine();
if (fName.length() <= 0)
{
fName = "ex1TestData.txt";
}
System.out.print( "Enter the number of integers to read: " );
int numToRead = kbd.nextInt();
kbd.nextLine();
int[] ret = exercise.maxIntsInFile(fName, numToRead);
System.out.println();
System.out.println("For the first " + numToRead
+ " integers in the file:");
System.out.println("Max = " + ret[0]);
System.out.println("Sum = " + ret[1]);
break;
default:
if ( response.toLowerCase().charAt( 0 ) == 'q' )
done = true;
else
System.out.print( "Invalid Choice" );
break;
}
}
} while ( !done );
System.out.println( "Goodbye!" );
}
}