solving the problem in both problems

Description

problem 1:

Don't use plagiarized sources. Get Your Custom Assignment on
solving the problem in both problems
From as Little as $13/Page

public class Problem1 {
/*Find all the problems (bugs)
/ fix the errors (explain in comments what you did to fix it!)
/ When the program is fixed. Run it.
/Correct run will print:
/Hello Class!
/ 12
/This is 17
*/
public static void main(String[] args) {
double x = “Hello Class!”;
System.out.println(x)
int x = 7 + 5;
System.out.println(x);
y = z + 4
y += 1;
System.out.println(“This is ” y);
}
}

problem 2:

public class Problem2 {
/*This program generates numbers 1 through 20 inclusive using for loop
/ and prints either the number itself, if it is even or
/ prints double of the value if it is odd
*/
public static void main(String[] args){
//Create a for loop that generates numbers 1 to 20 inclusive
for(/*insert code here*/){
//if i is even
if(i%2==0){
//print i using println
/*insert code here*/
}
else{ //i is odd
//print using println value of i doubled: 2i
/*insert code here*/
}
}
}
}