1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
idk where this goes wrong,please help me point my errors
i keep getting message
//
<#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<cstring>
void MatrixA(long nZeileA,long nSpalteA);
void MatrixB(long nZeileB,long nSpalteB);
void Transpose(long nZeileB,long nSpalteB,long i,long j,long b[5][5],long transpose [5][5]);
void MatrixA1(long nZeileA,long nSpalteA,long i,long j,long a[5][5]);
void MatrixB1(long nZeileB,long nSpalteB,long i,long j,long b[5][5]);
void MatrixAB(long nZeileB,long nSpalteA,long i,long j,long k,long nZeileA,long nSpalteB,long a[5][5],long b[5][5],long c[5][5],long sum,long mult[5][5]);
// the words MatrixAB is underlined
int main()
{
char chAuswahl;
long a[5][5],b[5][5],c[5][5],d[5][5],mult[5][5],transpose[5][5];
long i=0,j=0,k=0,nZeileA=0,nZeileB=0,nSpalteA=0,nSpalteB=0,o=0,p=0,sum=0;
printf("A => Matrix A eingeben\n");
printf("B => Matrix B eingeben\n");
printf("M => Berechne AB und Ausgabe\n");
printf("T => Transporniere B und Ausgabe\n");
printf("==============================\n");
printf("E => Ende\n\n");
fflush(stdin);
printf("Auswahl: ");
scanf("%c",&chAuswahl);
switch(chAuswahl)
{
case 'A':
case 'a':
{
system("CLS");
MatrixA1(nZeileA,nSpalteA,i,j,a);
main();
break;
}
case 'B':
case 'b':
{
system("CLS");
MatrixB1(nZeileB,nSpalteB,i,j,b);
main();
break;
}
case 'M':
case 'm':
{ MatrixAB(nZeileB,nSpalteA,i,j, k,nZeileA,nSpalteB,sum, a,b,c,mult);//'sum',and 'b' are underlined
break;
}
case 'T':
case 't':
{
Transpose(nZeileB,nSpalteB,i,j,b,transpose);
break;
}
case 'E':
case 'e':
{
exit(1);
}
default:
{
system("CLS");
main();
break;
}
}
fflush(stdin);
_getch();
}
void MatrixA(long nZeileA,long nSpalteA)
{ printf("Zeile Matrix A: ");
scanf("%d",&nZeileA);
printf("Spalte Matrix A: ");
scanf("%d",&nSpalteA);
}
void MatrixA1(long nZeileA,long nSpalteA,long i,long j,long a[5][5])
{
MatrixA(nZeileA,nSpalteA);
if(nZeileA >5 || nSpalteA>5)
{printf("Fehler!Maximal 5x5!");}
if (nZeileA<=0 ||nSpalteA<=0)
{main();}
else
for (i=0;i<nZeileA;i++)
{
for (j=0;j<nSpalteA;j++)
{
printf("Element A%d,%d : ",i,j);
scanf("%hd",&a[i][j]);
}
}
printf("%d%d",&a[i][j]);
for (i=0;i<nZeileA;i++)
{
printf("\n");
for (j=0;j<nSpalteA;j++)
{printf("%d\t",&a[i][j]);}
}
system("PAUSE");
system("CLS");
}
void MatrixB(long nZeileB,long nSpalteB)
{ printf("Zeile Matrix B: ");
scanf("%d",&nZeileB);
printf("Spalte Matrix B: ");
scanf("%d",&nSpalteB);
}
void MatrixB1(long nZeileB,long nSpalteB,long i,long j,long b[5][5])
{
MatrixB(nZeileB,nSpalteB);
if(nZeileB >5 || nSpalteB>5)
{printf("Fehler!Maximal 5x5!");}
if (nZeileB<=0 ||nSpalteB<=0)
{main();}
else
{for (i=0;i<nZeileB;i++)
{
for (j=0;j<nSpalteB;j++)
{
printf("Element B%d,%d : ",i,j);
scanf("%hd",&b[i][j]);
}
}
for (i=0;i<nZeileB;i++)
{
printf("\n");
for (j=0;j<nSpalteB;j++)
{printf("%d\t",&b[i][j]);}
}
system("PAUSE");
system("CLS");
}
}
void MatrixAB(long nZeileB,long nSpalteA,long i,long j,long k,long nZeileA,long nSpalteB,long a[5][5],long b[5][5],long c[5][5],long sum=0,long mult[5][5])
// the words MatrixAB is underlined
{
MatrixA(nZeileA,nSpalteA);
MatrixB( nZeileB,nSpalteB);
if (nZeileB !=nSpalteA)
{printf("Multiplikation nicht moeglich!");
system("PAUSE");
system("CLS");
}
else
{
for (i=0;i<nZeileA;i++)
{
for (j=0;j<nSpalteB;j++)
{
for (k=0;k<nZeileB;k++)
{sum=sum+ a[i][k]*b[k][j];}
mult[i][j]= sum;
sum=0;
}
}
for(i=0;i<nZeileA;i++)
{
for(j=0;j<nSpalteB;j++)
printf("%d\t ",mult[i][j]);
printf("\n\n");
}
}
}
void Transpose(long nZeileB,long nSpalteB,long i,long j,long b[5][5],long transpose[5][5])
{
MatrixB1(nZeileB,nSpalteB,i,j,b);
for (i=0;i<nZeileB;i++)
{
for(j=0;j<nSpalteB;j++)
{
transpose[j][i]=b[i][j];
}
}
printf("Transpose B");
for (i=0;i<nSpalteB;i++)
{
for(i=0;i<nZeileB;i++)
{
printf("%d\t",transpose[i][j]);
}
printf("\n");
}>
|