Untitled
unknown
plain_text
2 years ago
194 B
6
Indexable
#include <stdio.h>
#define N 2.0
int main() {
double divider = N;
double input;
printf("Print dividend > ");
scanf("%lf", &input);
printf("\nResult > %lf", input / divider);
return 0;
}
Editor is loading...
Leave a Comment