все сделано правильно, вывод полностью соответствует требованиям, так почему же ошибка второго условия?
package com.javarush.task.pro.task02.task0213;
/*
Причешем резюме
*/
public class Solution {
public static void main(String[] args) {
String title = "Senior Lead Principal Software Engineer Data Architect";
String degree = "In college, I Majored in Political Science and Minored in Religious Studies.";
String career = "Experienced Team Leader with strong Organizational Skills and a Successful career in Management.";
String resume = "RESUME";
//напишите тут ваш код
System.out.println(("TITLE: " + (title)).toLowerCase());
System.out.println(("DEGREE: " + (degree)).toLowerCase());
System.out.println(("CAREER: " + (career)).toLowerCase());
System.out.println("RESUME:".toLowerCase());
}
}
