File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ import java .util .Scanner ;
3+ /**
4+ *
5+ * Working code skeleton for exercises to be done
6+ * with for loops and methods slide deck 11
7+ *
8+ * 360-420-DW Intro to Java
9+ *
10+ *
11+ * @author your name goes here
12+ * @version 2018-02-?? (todays date goes here, delete this text)
13+ **/
14+
15+ public class ForExercise {
16+ public static void main (String [] args ) {
17+ // variables go here & delete or replace this comment
18+ Scanner keyboard = new Scanner (System .in );
19+
20+ // logic goes here & delete or replace this comment
21+ System .out .println ("Brought to you by Dawson College" );
22+
23+
24+ } // main()
25+
26+ /**
27+ * This is a method skeleton
28+ * use it to create your own methods
29+ * modify this text & the @param/ @return
30+ * modify the method name, parameters
31+ * return type and content as needed.
32+ *
33+ * 360-420-DW Intro to Java
34+ * @param tbd
35+ * @return tbd
36+ **/
37+ public static void changeThisName () {
38+ // TODO: put your content here
39+ // TODO: add parameters as needed
40+ // TODO: change return type as needed
41+ } // changeThisName()
42+
43+
44+ } // ForExercises
You can’t perform that action at this time.
0 commit comments