class Egy{
int a;
int b;
public void setData(int a ,int b){
this.a = a;
b = b;
}
public void showData(){
System.out.println("Value of A ="+a);
System.out.println("Value of B ="+b);
}
}
public class Example {
public static void main(String[] args) {
Egy cal=new Egy();
cal.setData(5,7);
cal.showData();
}
}
'');">
تحميل الصورة
الأجوبة
Output : Value of A =5
Value of B =0
success
تم تقديم إجابتك بنجاح
success
تم تعديل الإجابة، سيتم نشرها بعد مراجعة الإدارة