مشاهدة النسخة كاملة : حصريا .أسئلة تقني.إعلام آلي .جامعة الجزائر.3
السلام عليكم هذه أسئلة تقني إعلام آلي الخاصة بجامعة الجزائر 3 دالي إبراهيم
حصريا لمنتديات الجلفة
التى أجريت يومي السبت و الأحد 22 و 23 ديسمبر 2012
المادة : ثقافة عامة
http://up13.up-images.com/up/viewimages/f7baa2f7e3.jpg (http://fashion.azyya.com)
المادة :أنظمة التشغيل
http://up13.up-images.com/up/viewimages/742fbdaad5.jpg (http://fashion.azyya.com)
المادة : لغات البرمجة
http://up13.up-images.com/up/viewimages/276afb6fe6.jpg (http://fashion.azyya.com)
نرجوا التفاعل وطرح حلول ليتسنى للجميع المراجعة وأخذ نظرة عن الإمتحانات الكتابية
و الله عمل جد رائع اخي وشكرا جزيلا لك وبورك فيك
فقط نرجو من كل من لديه اجابات ان ينشرها هنا حتى تعم الفائدة
وبالتوفيق للجميع
اسئلة لغات البرمجة سهلة ساجاوب عليها في الرد التالي
function status(age:Integer):string;
begin
case age of
6..7:result:='Poussin';
8..9:result:='Popille';
10..11:result:='Minime';
12..200:result:='Cadet';
end;
end;
function l_impot(sex:string;age:Integer):Boolean;
begin
Result:=false;
if (sex='h') and (age > 20) then Result:= True;//'حك يا بابا' ;
if (sex='f') and (age in [18..35] ) then Result:=True;//'حك يا بابا' ;
end;
procedure coucou(c1,c2:Char);
var tmp:Char;
begin
tmp:=c1;
c1:= c2 ;
c2:=tmp;
end;
nabil-lolo
2012-12-25, 15:54
بارك الله فيك
للغة البرمجة
JAVA
public class age {
public age(){
}
public static void Your_Age(int age){
if (age == 6 || age == 7){
System.out.println("Poussin");
} else if (age == 8 || age == 9) {
System.out.println("Pupille");
}
else if(age == 10 || age == 11){
System.out.println("Minime");
}else if (age>=12){
System.out.println("Cadet");
}
}
public static void main(String[] args) {
Your_Age(12);
}
}
public static void Who_Pay_Tax(String sexe ,int age){
if(sexe=="Homme" && age>=20){
System.out.println("il faut payer ses impots");
}else if (sexe=="Femme" && age>=18 && age<=35){
System.out.println("il faut payer ses impots");
}else{
System.out.println("exonéré d'impôt");
}
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Who_Pay_Tax("Femme" ,17);
}
public static void Permut(String c1 ,String c2){
String val = " ";
val=c2;
c2=c1;
c1=val;
System.out.println("c1 est:"+c1);
System.out.println("c2 est:"+c2);
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.println("la valeur initiale pour c1 est 'a' ");
System.out.println("la valeur initiale pour c2 est 'b' ");
Permut("a","b");
}
}
شكرا لكم على التفاعل نتمنى منكم وضع دروس للخورزميات ولغة باسكال ونرجوا التفاعل
vBulletin® v3.8.10 Release Candidate 2, Copyright ©2000-2025, TranZ by Almuhajir