اكتب برنامج C لحساب وطباعة مربعات ومكعبات الأرقام من 0 إلى 20 واستخدام علامات التبويب لعرضها في جدول القيم
- برمجة
- برمجة سي c
- 2021-05-02
- Wassim
الأجوبة
/*Write a C program to calculate and prints the squares and cubes of the numbers from 0 to 20 and uses tabs to display them in a table of values*/
#include<stdio.h>
int main()
{
int x;
/* Print column names */
printf("Number\tSquare\tCube\n");
printf("=========================\n");
for(x=0; x<=20; x++)
printf("%d\t%d\t%d\n", x, x*x, x*x*x);
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال