Assignment cs1

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Q1\

S.o.print:will show the code in one line

S.o.println:will show the code in a new line

Q2\

* To change this template file, choose Tools | Templates

* and open the template in the editor.

*/

package assignments;

/**

* @author Noni

*/

public class Assignments {

/**

* @param args the command line arguments

*/

public static void main(String[] args) {

System.out.println("Hello world!");

System.out.println("my name is: \t \"Noura\" ");

System.out.println("use \\n instead of using \'println\' ");

System.out.println("This is \n my first project in java");

You might also like