Advertisement
patryk

Default

Apr 5th, 2011
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.83 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4. #include<ctype.h>
  5. int m, n;
  6. char wybor;
  7.  
  8. long double **create(int m, int n)
  9. {
  10.   long double **matrix;
  11.   matrix = new long double *[m];
  12.   for(int j = 0; j<m; j++) matrix[j] = new long double[n];
  13.   return matrix;
  14. }
  15.  
  16.  
  17. float dodawanie()
  18. {
  19. printf("Dodawanie");
  20. }
  21. float odejmowanie()
  22. {
  23. printf("Odejmowanie");
  24. }
  25. float wyswietlanie()
  26. {
  27. printf("Wyswietlanie");
  28. }
  29. int main()
  30. {
  31. printf("Co chcesz robic:\nD - dodaj macierze\nO - odejmij macierze\nW - wyswietl macierz \nK - koniec \n:");
  32. scanf("%c", &wybor);
  33. switch(wybor)
  34. {
  35.   case 'd':
  36.   case 'D':
  37.     dodawanie();
  38.     break;
  39.   case 'o':
  40.   case 'O':
  41.     odejmowanie();
  42.     break;
  43.   case 'w':
  44.   case 'W':
  45.      wyswietlanie();
  46.   case 'k':
  47.   case 'K':
  48.      break;
  49.   default:
  50.      printf("Zly wybor");
  51. }
  52.  
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement