اخوان من هسه تحضروا ترا امتحان الداتا بيس هذا الاحد بجابتر 3 و 4
😴3😢1🗿1
داتا الاحد 3/12
عربي الثلاثاء 5/12
برمجة الاحد 10/12
احصاء الثلاثاء 12/12
رسم الاحد 17/12
محاسبة الثلاثاء 19/12
وايام المختبرات حسبوها كوزات وشهريات عملي
..
عربي الثلاثاء 5/12
برمجة الاحد 10/12
احصاء الثلاثاء 12/12
رسم الاحد 17/12
محاسبة الثلاثاء 19/12
وايام المختبرات حسبوها كوزات وشهريات عملي
..
🍓1
اوراق المحاسبه يوم الثلاثاء يجيبهم ويتناقش وياكم عليهن
🌚2🤡1🍓1🗿1
منو ما سوه واجب الداتا @stage2it_bot
الي اسمه يم دكتورة رائدة خل يراسلني اضيفها بكروبها
بس الي اشرافهم يم دكتورة رائدة يفوت عفيه
كروب خاص بيهم
كروب خاص بيهم
الي اسمه ماكو ينتظر الملفات الجايه
هذي اسماء الطلبة الي راح تشرف عليهم ست هدى ودكتورة رائدة
شنو راح تسوي/قسموا طلبة القسم على التدريسيين لغرض الاشراف التربوي عليهم حتى كل مشرف يتعرف عن قرب على ظروف الطلبة واذا عنده مشاكل معينه نحاول نحلها معا..
متابعة للطلبة
...
شنو راح تسوي/قسموا طلبة القسم على التدريسيين لغرض الاشراف التربوي عليهم حتى كل مشرف يتعرف عن قرب على ظروف الطلبة واذا عنده مشاكل معينه نحاول نحلها معا..
متابعة للطلبة
...
🤣4
برنامج الاحصاء النسخه 21 الي تشتغل ونعتمدها 👇🏻👇🏻
اخوان اخوات
الي امتحن OOP وبمجموعه A1 و A2 خل يدزلي الاسئلة
الي امتحن OOP وبمجموعه A1 و A2 خل يدزلي الاسئلة
//(using methods) , write a program to read a two dimension ,
and return the number of odd elements of each coloumn in one dimensional array.
//(Bases on OOP) , write a program to creat a class called "person" with attributes"id,name,birth_year,and age"
with methods to print the information and calculate the age (2023-birth_year)
make a list of three persons in the main section.
هاي A3
and return the number of odd elements of each coloumn in one dimensional array.
//(Bases on OOP) , write a program to creat a class called "person" with attributes"id,name,birth_year,and age"
with methods to print the information and calculate the age (2023-birth_year)
make a list of three persons in the main section.
هاي A3
Forwarded from Zainab jasim almosawy🍊
package exam;
public class Student {
String name;
int age;
int marks[]=new int[6];
double average;
Student(String name, int age, int[] marks) {
this.name = name;
this.age = age;
this.average = average;
for (int i=0; i<6; i++)
this.marks[i] = marks[i];
}//Student
double average(){
double sum=0;
for (int i=0; i<6; i++)
sum += marks[i];
average = sum/6;
return average;
}//average
void printInfo(){
System.out.println(name + " " + age + " " + average);
}//printInfo
}
Forwarded from Zainab jasim almosawy🍊
package exam;
import java.util.Scanner;
public class StudentArray {
public static void main(String[] args) {
int size, age;
String name;
int marks[]= new int[6];
Scanner cin = new Scanner(System.in);
System.out.print("Enter number of student ::");
size = cin.nextInt();
if (size>0){
Student stud[] = new Student[size];
for (int i = 0; i< size ; i++){
System.out.print("Enter name ::");
name = cin.next();
System.out.print("Enter age ::");
age = cin.nextInt();
for (int j = 0; j< 6 ; j++){
System.out.print("Enter mark["+j+"]::");
marks[j] = cin.nextInt();
}//forj
System.out.println();
stud[i] = new Student(name, age, marks);
stud[i].average();
}//for i
System.out.println();
for (int j = 0; j< size ; j++)
stud[j].printInfo();
}//if
else
System.out.print(" OUT OF RANGE " );
}//main
}//StudentArray