Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- #include<string.h>
- #include<ctype.h>
- int m, n;
- char wybor;
- long double **create(int m, int n)
- {
- long double **matrix;
- matrix = new long double *[m];
- for(int j = 0; j<m; j++) matrix[j] = new long double[n];
- return matrix;
- }
- float dodawanie()
- {
- printf("Dodawanie");
- }
- float odejmowanie()
- {
- printf("Odejmowanie");
- }
- float wyswietlanie()
- {
- printf("Wyswietlanie");
- }
- int main()
- {
- printf("Co chcesz robic:\nD - dodaj macierze\nO - odejmij macierze\nW - wyswietl macierz \nK - koniec \n:");
- scanf("%c", &wybor);
- switch(wybor)
- {
- case 'd':
- case 'D':
- dodawanie();
- break;
- case 'o':
- case 'O':
- odejmowanie();
- break;
- case 'w':
- case 'W':
- wyswietlanie();
- case 'k':
- case 'K':
- break;
- default:
- printf("Zly wybor");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement