shahad nawfal.accdb
900 KB
امتحان A2 الرعاية الاجتماعية
⚫️تم فتح المنصة الان يرجى من الطلاب التسجيل الان واختيار بصورة صحيحة يعني من تسجل لازم يطلع علم اخضر
طلاب شعبة A جيكوا تسجيلكم
رابط المنصة:
https://ums.contact.uobasrah.edu.iq
طلاب شعبة A جيكوا تسجيلكم
رابط المنصة:
https://ums.contact.uobasrah.edu.iq
⚡2
قناة الاحصاء الخاصة بست هديل :
https://t.me/+YwzNUxnaHLwzNjZi
https://t.me/+YwzNUxnaHLwzNjZi
⚡1
اعلاه فقط اسماء الطلبة المسجلين على المنصة وسيتم اعتمادها في المحاضرات القادمة اما الطلبة غير المسجلين عليهم مراجعة رئيس القسم
⚡1
محاضره3.pdf
533.1 KB
احصاء الاعمال
⚡1
السلام عليكم طلاب هذه (محاضرة المعادلة المحاسبية). وايضا يوجد محاضرات لتحليل العمليات والقيود اليوميه
مادة المحاسبة المالية....
مادة المحاسبة المالية....
⚡1🔥1
Forwarded from تبليغات نظم مرحلة ثانيه (𝐻𝑈𝑆𝑆𝐸𝐼𝑁🖥 🗞،)
Forwarded from Zainab jasim almosawy🍊
import java.util.Scanner;
public class Program {
static void readList(int x[], int n){
Scanner cin = new Scanner(System.in);
for (int i=0; i<n; i++ ){
System.out.print("x["+ i + "] ::");
x[i]= cin.nextInt();
}// for
}// readList
static void printList(int x[], int n){
for (int i=0; i<n; i++ )
System.out.print(x[i] + " ");
System.out.println();
}//printList
static double avgList(int x[], int n){
double sum=0;
for (int i=0; i<n; i++ )
sum += x[i];
return sum/n;
}//avgList
public static void main(String[] args) {
int n;
Scanner cin = new Scanner(System.in);
System.out.print(" Enter Size of Array :: ");
n = cin.nextInt();
if (n>0){
int list[]= new int[n];
readList(list, n);
printList(list, n);
System.out.println("Average is "+avgList(list, n));
}//if
else
System.out.println("OUT OF RANGE");
}//main
}//Program
public class Program {
static void readList(int x[], int n){
Scanner cin = new Scanner(System.in);
for (int i=0; i<n; i++ ){
System.out.print("x["+ i + "] ::");
x[i]= cin.nextInt();
}// for
}// readList
static void printList(int x[], int n){
for (int i=0; i<n; i++ )
System.out.print(x[i] + " ");
System.out.println();
}//printList
static double avgList(int x[], int n){
double sum=0;
for (int i=0; i<n; i++ )
sum += x[i];
return sum/n;
}//avgList
public static void main(String[] args) {
int n;
Scanner cin = new Scanner(System.in);
System.out.print(" Enter Size of Array :: ");
n = cin.nextInt();
if (n>0){
int list[]= new int[n];
readList(list, n);
printList(list, n);
System.out.println("Average is "+avgList(list, n));
}//if
else
System.out.println("OUT OF RANGE");
}//main
}//Program
👍3🕊1
طلاب جاي اسوي شيت كامل مالت كودات المختبر الي كاتب كودات من المختبر او عنده بس الافكار الي درسناهن ل 3 شعب خل يدزلي @stage2it_bot
👍2
#include <GL/glut.h>
void Home()
{
glClearColor(1, 1, 1, 1);
glClear(GL_COLOR_BUFFER_BIT);
glLineWidth(6);
// هيكل البيت
glColor3f(0, 0, 0.0);
glBegin(GL_LINE_LOOP);
glVertex2f(40, 40);
glVertex2f(40, 90);
glVertex2f(70, 120);
glVertex2f(100, 90);
glVertex2f(100, 40);
glEnd();
// باب البيت
glColor3f(0, 0, 0);
glBegin(GL_LINE_STRIP);
glVertex2f(50, 40);
glVertex2f(50, 70);
glVertex2f(70, 70);
glVertex2f(70, 40);
glEnd();
// شباك البيت
glColor3f(0, 0, 0);
glBegin(GL_LINE_LOOP);
glVertex2f(80, 80);
glVertex2f(80, 70);
glVertex2f(90, 70);
glVertex2f(90, 80);
glEnd();
//مدخنة البيت
glBegin(GL_LINE_STRIP);
glVertex2f(50, 100);
glVertex2f(50, 120);
glVertex2f(60, 120);
glVertex2f(60, 110);
glEnd();
glFlush();
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowSize(750, 550);
glutInitWindowPosition(100, 123);
glutCreateWindow("HOME");
glutDisplayFunc(Home);
gluOrtho2D(40, 200, 40, 200);
glutMainLoop();
}
//كود رسم البيت بس اني مسويه الابعاد مالته
👍2🍓2