031 - Further For Loop Practice 7 (mIxEd CaSe)
![031 - Further For Loop Practice 7 (mIxEd CaSe)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcIEs89%2FbtqAi9hwFrl%2FI8Kr3sT4RlQ3WSUKT6Frek%2Fimg.png)
031 - Further For Loop Practice 7 (mIxEd CaSe)
Given the following inputs: String s; Write a for loop that will print out the string in alternating cases, with the first letter being lowercase. Keep in mind the following String methods: str.toUpperCase(); //make it uppercase str.toLowerCase(); //make it lowercase DO NOT USE .charAt()! .charAt returns a character, and you need a string in order to make it upper/lowercase. To get a letter at a..