package com.codegym.task.task03.task0320;
/*
The humble programmer
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//write your code here
BufferedReader name= new BufferedReader(new InputStreamReader(System.in));
String Sara= name.readLine();
System.out.print("Sara makes $120,000 a year. Ha-ha-ha!");
}
}
confused and need help
Under discussion
Comments (2)
- Popular
- New
- Old
You must be signed in to leave a comment
Ejwere
12 September 2019, 17:26useful
check your actual print statement, your putting your variable as a string literal and not a variable. it needs to look something along the lines of
sara is not a good variable name anyway, especially if its the solution. it should also not be capitalized, that can confuse it for a class to other programmers. +1
Pavel Klochkov
5 September 2019, 07:10useful
Hey! On line 16 you include a text instead of a variable. Check it.
+1