> width >> length; int area = rectArea(width, length); cout<< "Rectangle Area is: “ << area << endl; system("pause"); return 0; } int rectArea(int x, int y) int area = x * y; return area;"> > width >> length; int area = rectArea(width, length); cout<< "Rectangle Area is: “ << area << endl; system("pause"); return 0; } int rectArea(int x, int y) int area = x * y; return area;">
تنزيل العرض التّقديمي
العرض التّقديمي يتمّ تحميله. الرّجاء الانتظار
تمّ نشره من قِبَل Deddy Tanuwidjaja
1
Worksheet #2 باستعمال الدوال, أكتبي برنامج يطلب من المستخدم إدخال عددين (طول وعرض مستطيل), ثم يقوم البرنامج بحسابة مساحة المستطيل وطباعته, علماً بأن قانون مساحة المستطيل هو: Rectangle Area = Width * Length إعلان الدالة هو: int rectArea(int x, int y);
2
#include <iostream>
using namespace std; int rectArea(int , int ); int main() { int width, length; cout<<"Please enter Width and Length: "; cin>> width >> length; int area = rectArea(width, length); cout<< "Rectangle Area is: “ << area << endl; system("pause"); return 0; } int rectArea(int x, int y) int area = x * y; return area;
عروض تقديميّة مشابهة
© 2024 SlidePlayer.ae Inc.
All rights reserved.