|
float C[3][5]={0};
for(i=0 ; i<3 ; ++i)
{
for(j=0 ; j<5 ; ++j)
{
for(k=0 ; k<4 ; ++k)
C[i][j] += A[i][k] * B[k][j];
}
}
printf(" A * B = C => C?\n");
for(i=0 ; i<3 ; ++i)
{
for(j=0 ; j<5 ; ++j)
printf("%f\t", C[i][j]);
}
}
1번 문제의 답
2번 문제의 답
|
- 페이지 4페이지
- 가격 2,300원
- 등록일 2013.04.01
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c-1
3-4
3-17
3-30
#include <iostream.h>
#include <math.h>
void main()
{
double a,b,c,d,x,y;
float f,tp,tq,tf;
cout << "F=";cin >> f;
cout << "theta F="; cin >> tf;
cout << "theta P="; cin >> tp;
cout << "theta Q="; cin >> tq;
a=cos(tp/180*3
|
- 페이지 4페이지
- 가격 800원
- 등록일 2009.12.18
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
미적분학 1장 연습문제풀이
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2011.09.29
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
1장_연습문제
1. /etc/passwd 파일의 네 번째 필드(그룹 id)를 첫 번째 기준으로 하고, 첫 번째 필드(로그인ID)를 두 번째 기준으로 하여 정렬하시오.
답) sort -t: +4 -5 +1 -2 /etc/passwd
2. /etc/passwd 파일에서 사용자의 이름만 뽑아서 test_user 라는 이름의 파
|
- 페이지 25페이지
- 가격 8,000원
- 등록일 2008.11.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
computer provides its users with a virtual memory space of 2(32exp) bytes. The computer has 2(18exp) bytes of physical memory. The virtual memory is implemented by paging, and the page size is 4,096 bytes. A user process generates the virtual address 11123456. Explain how the system establishes the
|
- 페이지 9페이지
- 가격 3,000원
- 등록일 2011.04.16
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|