8 lines
140 B
C
8 lines
140 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <math.h>
|
||
|
int main(void) {
|
||
|
double proba=0;
|
||
|
proba = (15/36)*100;
|
||
|
printf("%.2f\n", proba);
|
||
|
}
|