back icon
instructor profile picture

يزيد فهد النويبت

(130) 4.9

عال 111 | برمجة حاسبات (عيال+بنات)

جامعة الملك سعود logo
جامعة الملك سعود

299 رس
299 رس

شامل ضريبة القيمة المضافة

أكمل الطلب

print vs println exercise

print vs println exercise

print vs println exercise


  1. public  class PrintEx{  
  2.   
  3.     public static void main(String[] args) {  
  4.     System.out.print("MyName");  
  5.     System.out.print("Is");  
  6.     System.out.print("Yazeed");  
  7.     }  
  8.   
  9. }  

السؤال 1 من 1

What's the OutPut of the Program