fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(){
  4. int liczba;
  5. int i;
  6. char litera;
  7. //przyklad nr 1
  8. printf("przyklad nr 1\n");
  9. printf("podaj litere :");
  10. scanf("%c", &litera);
  11. printf("\n");
  12. switch(litera)
  13. {
  14. //' -char
  15. //" - string
  16. case 'a':
  17. printf("Podano litere %c, jej kod asci to %d\n",litera,litera);
  18. break;
  19. case 'b':
  20. printf("Podano litere %c, jej kod asci to %d\n",litera,litera);
  21. break;
  22. case 'c':
  23. printf("Podano litere %c, jej kod asci to %d\n",litera,litera);
  24. break;
  25. case 'g':
  26. printf("Podano litere %c, jej kod asci to %d\n",litera,litera);
  27. break;
  28. default:
  29. printf("podana inna litere niz a,b,c lub g\n");
  30. }
  31. system("pause");
  32. return 0;
  33. }
Success #stdin #stdout #stderr 0s 2116KB
stdin
c
stdout
przyklad nr 1
podaj litere :
Podano litere c, jej kod asci to 99
stderr
sh: 1: pause: not found