This website works better with JavaScript
홈
탐색
도움말
가입하기
로그인
marx
/
cpp_trait
Watch
1
Star
0
포크
0
파일
이슈
0
풀 리퀘스트
0
위키
트리:
da1bc3b21e
브랜치
태그
master
cpp_trait
/
circle.h
circle.h
90 B
히스토리
Raw
1
2
3
4
5
6
7
#ifndef CIRCLE_H
#define CIRCLE_H
struct Circle
{
const double radius = 4.0;
};
#endif