Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package mng2023b5;
- public class Day04B {
- public static void main(String[] args) {
- String txtSample = "22";
- String txt1, txt2, txt3;
- System.out.println("Variable value: " + txtSample);
- txt1 = "Sometimes I'm alone,";
- txt2 = "Sometimes I'm not,";
- txt3 = "Hello?";
- System.out.println(txt1);
- System.out.println(txt2);
- System.out.println(txt1);
- System.out.println(txt3);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment