Write a program that displays: "I think being a programmer is cool".
Example output: I think being a programmer is cool
Requirements:
The program should output text.
The text should begin with "I think".
The text should end with "is cool".
The text should consist of 34 characters, including spaces and punctuation marks.
The text should consist of one line.
The displayed text must match the task conditions.
package en.codegym.task.jdk13.task01.task0101;
/*
It's cool to be a programmer!
*/
public class Solution {
public static void main(String[] args) {
System.out.print("I thjdhdbdbdink being a programmer is cool");
}
}
This website uses cookies to provide you with personalized service. By using this website, you agree to our use of cookies. If you require more details, please read our Terms and Policy.