Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void kolos1()
- {
- float a;
- float b;
- float x;
- float y = 0;
- scanf("%f", &a);
- scanf("%f", &b);
- x = (y - b) / a;
- if (y == 0)
- {
- printf("%f", x);
- }
- else
- {
- printf("Brak miejsca zerowego");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement