اكتب برنامج C لاختبار ما إذا كان رقم غير سالب معين هو مضاعف 13 أو أنه أكثر من مضاعف 13
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to to test whether a given non-negative number is a multiple of 13 or it is one more than a multiple of 13*/
#include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(13));
printf("\n%d",test(14));
printf("\n%d",test(27));
printf("\n%d",test(41));
}
int test(int n)
{
return n % 13 == 0 || n % 13 == 1;
}
القوائم الدراسية التي ينتمي لها السؤال