Skip to content
Snippets Groups Projects
Commit 9df9984a authored by Colton Jobes's avatar Colton Jobes
Browse files

Added HW7 Materials

parent e1adb547
No related branches found
No related tags found
No related merge requests found
5123 456 7 891 01 112
4789 2784 8910 8290
54 1929331 83917
4 789087089 087098
5 192 929 59182 8818
public class AnotherPrinter {
public static void main(String[] args) {
System.out.println("I love faang!");
}
}
public class Printer {
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
System.out.println("faang is the best company ever!!");
}
}
}
public class YetAnotherPrinter {
public static void main(String[] args) {
String i = "I ";
String l = "love ";
String f = "faang faang";
System.out.println(i + l + f);
}
}
task1.sh 0 → 100644
#!/bin/bash
####################################
# Name: <Your name here>
# CSE 391 - Winter 2021
# Homework 7 - Task 1
####################################
function problem1 {
# Type your answer to problem #1 below this line
echo "not yet implemented"
}
function problem2 {
# Type your answer to problem #2 below this line
echo "not yet implemented"
}
function problem3 {
# Type your answer to problem #3 below this line
echo "not yet implemented"
}
function problem4 {
# Type your answer to problem #4 below this line
echo "not yet implemented"
}
function problem5 {
# Type your answer to problem #5 below this line
echo "not yet implemented"
}
function problem6 {
# Type your answer to problem #6 below this line
echo "not yet implemented"
}
function problem7 {
# Type your answer to problem #7 below this line
echo "not yet implemented"
}
function problem8 {
# Type your answer to problem #8 below this line
echo "not yet implemented"
}
function problem9 {
# Type your answer to problem #9 below this line
echo "not yet implemented"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment