إعـــــــلان

تقليص
لا يوجد إعلان حتى الآن.

ابحث عن شروحات لبرنامج c++

تقليص
X
 
  • تصفية - فلترة
  • الوقت
  • عرض
إلغاء تحديد الكل
مشاركات جديدة

  • [ التقنية العليا] ابحث عن شروحات لبرنامج c++

    ارجو من لديه شروحه وامثله او اختبارات نظريه
    ارجو ارفاقها ومشكورين تحياتي

    right angle triangle formula A=0.5bh

  • #2
    حصلت او بعدك!!!







    صلي على رسول الله محمد

    لا اله الا الله

    تعليق


    • #3
      #include<iostream>
      /* run this program using the console pauser or add your own getch, system("pause") or input loop */
      usingnamespace std;
      int main(intargc, char** argv)
      {
      float base,height;
      int area;
      //reading base of triangle side
      cout<<"Enter base figure";
      cin>>base;
      //reading height of triangle side
      cout <<"Enterheight figure";
      cin>>height;
      //finding area of triangle
      area=0.5*(base*height);
      cout<<"Area of a tiangle is:"<<area;
      system("pause");
      return 0;
      }

      تعليق


      • #4
        بالتوفيق لكم ..

        تعليق

        يعمل...
        X