BxComp/2020/01/função_retorna.c

28 lines
369 B
C
Raw Normal View History

2021-09-07 19:41:19 +02:00
int funcaoBalancear () {
2021-09-07 19:33:10 +02:00
int n;
float litro, teor;
printf("Quantos barris você quer balancear?");
scanf("%d", &n);
for(int i=0; i <= n; i++) {
scanf("%f %f", &litro, &teor);
2021-09-07 19:41:19 +02:00
switch ()
{
case:
break;
default:
break;
}
2021-09-07 19:33:10 +02:00
}
2021-09-07 19:41:19 +02:00
}
int main () {
funcaoBalancear();
2021-09-07 19:33:10 +02:00
}