System.out.println(("RESUME").toLowerCase());
System.out.println(("TITLE: " + title).toLowerCase());
System.out.println(("DEGREE: " + degree).toLowerCase());
System.out.println(("CAREER: " + career).toLowerCase());
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.";
//напишите тут ваш код
System.out.println(("RESUME").toLowerCase());
System.out.println(("TITLE: " + title).toLowerCase());
System.out.println(("DEGREE: " + degree).toLowerCase());
System.out.println(("CAREER: " + career).toLowerCase());
}
}