package com.codegym.task.task01.task0121;
/*
Contract
*/
public class Solution {
public static void main(String[] args) {
System.out.printIn("My name is Amigo.");
System.out.printIn();
System.out.printIn("I agree to be paid $800 per month during the first year.");
System.out.printIn("I agree to be paid $1500 per month during the second year.");
System.out.printIn("I agree to be paid $2200 per month during the third year.");
System.out.printIn("I agree to be paid $2700 per month during the fourth year.");
System.out.printIn("I agree to be paid $3200 per month during the fifth year.");
System.out.printIn();
System.out.printIn("Kiss my shiny metal reat actuator!");
}
}
help. I put the following in, but it says something like "cannot find symbol symbol". whatever that means. but seriously though, please help.I am 100% sure that it is correct, but
Resolved
Comments (3)
- Popular
- New
- Old
You must be signed in to leave a comment
Richard Han
7 September 2018, 08:35
you know. I thought l(el) was I(eye). I wear glasses, and maybe I AM blind
0
Roman
27 August 2018, 10:32solution
Compare:
+2
Atif Saeed
26 August 2018, 11:19useful
you problem is in line System.out.println();
+1