اكتب برنامج C يقبل 4 أعداد صحيحة p و q و r و s من المستخدم حيث تكون r و s موجبة و p زوجي

  • برمجة
  • برمجة سي c

اكتب برنامج C يقبل 4 أعداد صحيحة p و q و r و s من المستخدم حيث تكون r و s موجبة و p زوجي. إذا كانت q أكبر من r وكانت s أكبر من p وإذا كان مجموع r و s أكبر من مجموع p و q ، فقم بطباعة "القيم صحيحة" ، وإلا اطبع "قيم خاطئة"

مثال عن الخرج المتوقع :

Input the second integer: 35
Input the third integer: 15
Input the fourth integer: 46
Wrong values

الأجوبة

/*Write a C program that accepts 4 integers p, q, r, s from the user where r and s are positive and p is even. If q is greater than r and s is greater than p and if the sum of r and s is greater than the sum of p and q print "Correct values", otherwise print "Wrong values"*/

#include 
int main() {
	int p, q, r, s;
		    
    printf("\nInput the first integer: "); 
    scanf("%d", &p);
    printf("\nInput the second integer: ");
    scanf("%d", &q);
    printf("\nInput the third integer: ");
    scanf("%d", &r);
    printf("\nInput the fourth integer: ");
    scanf("%d", &s);

	if((q > r) && (s > p) && ((r+s) > (p+q)) && (r > 0) && (s > 0) && (p%2 == 0))
	 {
		printf("\nCorrect values\n");
	} 
	else {
		printf("\nWrong values\n");
	}
	return 0;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...