اذهب إلى المحتوى

غازي بطال

الأعضاء
  • المساهمات

    4
  • تاريخ الانضمام

  • تاريخ آخر زيارة

إنجازات غازي بطال

عضو مبتدئ

عضو مبتدئ (1/3)

2

السمعة بالموقع

  1. #include <stdio.h> int width; int height; int area; int perimeter; int main() { height = 7; width = 5; perimeter = 2*(height + width); printf("Perimeter of the rectangle = %d inches\n", perimeter); area = height * width; printf("Area of the rectangle = %d square inches\n", area); return(0); }
  2. Write a C program that take integer value and char (A for area rectangle / P for Perimeter rectangle), which determine all possible values represent integer value and according char without repeating values.
×
×
  • أضف...