반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mglearn
- discrete_scatter
- java역사
- 머신러닝
- tensorflow
- web 개발
- web 사진
- KNeighborsClassifier
- cudnn
- broscoding
- 웹 용어
- postorder
- 대이터
- 재귀함수
- html
- CES 2O21 참여
- CES 2O21 참가
- C언어
- web 용어
- classification
- web
- paragraph
- 자료구조
- 결합전문기관
- pycharm
- Keras
- bccard
- inorder
- 데이터전문기관
- vscode
Archives
- Today
- Total
bro's coding
2차원 동적할당으로 좌표간의 거리 구하기 본문
반응형
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
double comput(double x1, double x2, double y1, double y2) {
return sqrt((x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2));
}
int main() {
int size;
scanf("%d", &size);
double **point = (double**)malloc(sizeof(double*)*size);
for (int i = 0; i < size; i++) {
point[i] = (double*)malloc(sizeof(double) * 2);
}
for (int i = 0; i < size; i++) {
scanf("%lf %lf", &point[i][0], &point[i][1]);
}
for (int i = 0; i < size; i++) {
for (int j = 0; j < size; j++) {
printf("%.2f ",
comput(point[i][0], point[j][0], point[i][1], point[j][1]));
}
puts("");
}
for (int i = 0; i < size; i++) {
free(point[i]);
}
free(point);
return 0;
}
/*
1 1
1 2
2 1
5 4
6 4
6 5
*/
반응형
'[IT] > C++' 카테고리의 다른 글
void pointer를 활용한 함수(function) (0) | 2020.03.12 |
---|---|
구조체 안에서 함수 사용하기 (0) | 2020.03.11 |
memset / memcpy 활용 (0) | 2020.03.11 |
strtok의 활용 (0) | 2020.03.11 |
3차원 동적할당 (0) | 2020.03.11 |
3차원 배열 활용 (0) | 2020.03.11 |
char의 pointer를 이용해 byte별로 읽기 (0) | 2020.03.10 |
구구단 출력하기 (0) | 2019.04.08 |
Comments