online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#pragma warning(disable:4996) #include <stdio.h> #include <math.h> int main(void) { double angle; double sin_val, cos_val, tan_val; // 라디안 단위의 각도 입력 요청 printf("각도(라디안) 입력: "); scanf("%lf", &angle); // sin, cos, tan 계산 sin_val = sin(angle); cos_val = cos(angle); tan_val = tan(angle); // 결과 출력 (소수점 둘째 자리까지) printf("sin(%.2lf) = %.6lf\n", angle, sin_val); printf("cos(%.2lf) = %.6lf\n", angle, cos_val); printf("tan(%.2lf) = %.6lf\n", angle, tan_val); return 0; }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue