행렬의 곱셈을 하는 프로그램을 만들고 싶은데 자꾸 에러가 발생합니다.

kjhh03의 이미지

#include <stdio.h>
 
void multiplication_matrices(int a[][3], int b[][3]);
 
int main(void)
{
	int i, j, k;
	int x, y;
	int p;
	int num = 0;
	int a[][3] = { { 0 }, { 0 } }, b[][3] = { { 0 }, { 0 } };
 
 
	for (i = 0; i < 2; i++) // 첫번째 행렬을 읽어드린다.
	{
		num = 0;
 
		for (j = 0; j < 3; j++)
		{
			printf("첫번째 행렬의 %d행 %d열의 값을 넣으세요. : ", i+1, j+1);
			scanf_s("%d", &a[i][j]);
			num += a[i][j];
		}
	}
 
	printf("\n\n");
 
	for (x = 0; x < 3; x++) // 두번째 행렬을 읽어드린다.
	{
		num = 0;
 
		for (y = 0; y < 3; y++)
		{
			printf("두번째 행렬의 %d행 %d열의 값을 넣으세요. : ", x + 1, y + 1);
			scanf_s("%d", &b[x][y]);
			num += b[x][y];
		}
	}
 
	printf("   첫번째 행렬\n");
 
	for (i = 0; i < 2; i++)
	{
		for (j = 0; j < 3; j++)
			printf("%4d", a[i][j]);
 
		printf("\n");
	}
 
	printf("   두번째 행렬\n");
 
	for (x = 0; x < 3; x++)
	{
		for (y = 0; y < 3; y++)
			printf("%4d", b[x][y]);
 
		printf("\n");
	}
 
	p = multiplication_matrices(a, b);
 
	return 0;
}
 
void multiplication_matrices(int a[][3], int b[][3])
{
	int c[3][3] = { { 0 }, { 0 } };
	int i, j, k;
	int num = 0;
 
	for (i = 0; i < 2; i++)
		for (j = 0; j < 3; j++)
			for (k = 0; k < 3; k++)
			{
				num += a[i][k] * b[k][j];
			}
	c[i][j] = num;
	num = 0;
 
	for (i = 0; i < 3; i++)
	{
		for (j = 0; j < 3; j++)
			printf("%4d", b[i][j]);
 
		printf("\n");
	}
 
 
 
	return c;
 
}
File attachments: 
첨부파일 크기
Image icon 1.JPG244.01 KB
세벌의 이미지

문제를 잘 읽어보셔요.
질문을 올릴 때는 어디에서 어떤 에러가 나는지 써 주셔요.

https://wiki.kldp.org/wiki.php/RTFM

shint의 이미지

참고해보세요.

행렬의 곱셈 '검색 결과
http://blog.naver.com/alwaysneoi?Redirect=Log&logNo=100194421088

행렬의 곱셈 C '검색 결과
http://search.naver.com/search.naver?sm=stb_hty&where=se&ie=utf8&query=%ED%96%89%EB%A0%AC%EC%9D%98+%EA%B3%B1%EC%85%88+C

행렬의 크기가 고정되어 있으니. 주의하시기 바랍니다.

출력하면서 확인하시면. 잘 될겁니다.

첫번째 행렬 - 출력
   1   2   3
   4   5   6
두번째 행렬 - 출력
   7   8
   9  10
  11  12
multiplication_matrices 값 입력
[1, 7]
[2, 9]
[3, 11]
[0,0,3] 58
[1, 8]
[2, 10]
[3, 12]
[0,1,3] 64
[4, 7]
[5, 9]
[6, 11]
[1,0,3] 139
[4, 8]
[5, 10]
[6, 12]
[1,1,3] 154
multiplication_matrices c출력
  58  64
 139 154
c[][]   주소  [3d24c0]
int * p 주소  [3d24c0]
multiplication_matrices p출력
  58  64
 139 154

댓글 첨부 파일: 
첨부파일 크기
Package icon test 행렬의 곱셈 연습.zip380.74 KB

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

세벌의 이미지

오랜만에 코딩 해 봤네요.
아래 코드를 보고 분석해 보셔요.

#include <stdio.h>
 
void ins_matrix(int a[][3], int b[][3]);
void mult_matrix(int a[][3], int b[][3], int c[][3]);
void show_matrix(int a[][3], int b[][3]);
void print_matrix(int c[][3]);
 
int main()
{
	int a[2][3], b[3][3];
	static int c[2][3];
 
	ins_matrix(a,b);
	show_matrix(a,b);
	mult_matrix(a, b, c);
	print_matrix(c);
 
	return 0;
}
 
 
void ins_matrix(int a[][3], int b[][3])
{
	int y, x;
 
	printf("1st matrix\n");
 
	for(y=0; y<2; y++){
		for(x=0; x<3; x++){
			printf("a%d%d ", y+1,x+1);
			scanf("%d", &a[y][x]);
		}
		printf("\n");
	}
 
	printf("2nd matrix\n");
 
	for(y=0; y<3; y++){
		for(x=0; x<3; x++){
			printf("b%d%d ", y+1,x+1);
			scanf("%d", &b[y][x]);
		}
		printf("\n");
	}
}
 
void show_matrix(int a[][3], int b[][3])
{
 
	int y, x;
 
	printf("1st matrix\n");
 
	for(y=0; y<2; y++){
		for(x=0; x<3; x++){
			printf("%d ", a[y][x]);
		}
		printf("\n");
	}
 
	printf("2nd matrix\n");
 
	for(y=0; y<3; y++){
		for(x=0; x<3; x++){
			printf("%d ", b[y][x]);
		}
		printf("\n");
	}
	printf("\n");
}
 
void mult_matrix(int a[][3], int b[][3], int c[][3])
{
	int y, x, t;
 
	for(y=0; y<3; y++){
		for(x=0; x<3; x++){
			for(t=0; t<3; t++){
				c[y][x] += a[y][t] * b[t][x];
			}
		}
	}
	return;
}
 
void print_matrix(int c[][3])
{
	int y, x;
 
	for(y=0;y<2;y++){
		for(x=0;x<3;x++)
			printf("%d ", c[y][x]);
		printf("\n");
	}
	return;
}

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.