10 lines
132 B
C
10 lines
132 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int x = 50;
|
|
int y = 9;
|
|
printf("%d / %d = %f\n", x, y, x/(float)y);
|
|
return 0;
|
|
}
|