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