battleforce Posted October 11, 2017 Report Share Posted October 11, 2017 Ostatnio napisałem coś takiego...po wpisaniu cyfry lub innego znaku "Podaj literę!" z 12 linijki wyświetla mi się dwa razy... #include <stdio.h> #include <ctype.h> int main(void) { char ch; printf("Podaj litere:\n"); while (isalpha(ch = getchar()) == 0) { printf("Podaj litere!\n"); // 12 linijka } // moje obliczenia } Od razu zaznaczę, że jestem bardzo początkujący w pisaniu kodu, więc choć mój błąd jest pewnie prosty - nie potrafię go znaleźć... Bardzo proszę o pomoc Link to comment Share on other sites More sharing options...
Kaczus Posted October 18, 2017 Report Share Posted October 18, 2017 Po znaku dajesz enter i on tez jest wczytywany - ot cała zagadka... Link to comment Share on other sites More sharing options...
battleforce Posted October 18, 2017 Author Report Share Posted October 18, 2017 Dzięki za pomoc, już naprawiłem i działa Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.