Area of Rectangle | C programming | Code Pirates

preview_player
Показать описание
Code : Check the comment box
Рекомендации по теме
Комментарии
Автор

#include <stdio.h>

int main()
{
int length, breadth;
printf("What is the length of the rectangle\n");
scanf("%d", &length);

printf("What is the breadth of the rectangle\n");
scanf("%d", &breadth);

printf("The area of your rectangle is %d", length * breadth);
return 0;
}

MorningStar_XX
welcome to shbcf.ru