اكتب برنامج C لطباعة 3 أرقام في سطر ، بدءًا من 1 وطباعة n سطرًا. أخذ عدد الأسطر (n ، عدد صحيح) من المستخدم
- برمجة
- برمجة سي c
- 2021-05-01
- Wassim
الأجوبة
/*Write a C program to print 3 numbers in a line, starting from 1 and print n lines. Accept number of lines (n, integer) from the user*/
#include <stdio.h>
int main() {
int a, i, j = 1, x = 0;
printf("Input number of lines: ");
scanf("%d", &a);
for(i = 1; i <= a; i++) {
while(x < 3) {
printf("%d ", j++);
x++;
}
x = 0;
printf("\n");
}
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال