اكتب برنامج C يقرأ عددين صحيحين ويقسم الرقم الأول على الثاني اطبع نتيجة هذه القسمة برقمين بعد الفاصلة العشرية واطبع "القسمة غير ممكنة ..!" إذا كان التقسيم غير ممكن
- برمجة
- برمجة سي c
- 2021-05-02
- Wassim
الأجوبة
/*Write a C program that read two integers and dividing the first number by second, print the result of this division with two digits after the decimal point and print "Division not possible..!" if the division is not possible*/
#include <stdio.h>
int main () {
int n, x, y, i;
float result = 0;
printf("Input two integer values:\n");
scanf("%d %d", &x, &y);
if (y == 0)
{
printf("Division not possible..!\n");
}
else
{
result = (x*1.0)/(y);
printf("Result: %.2f\n", result);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال