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(){ double angle, sin_val, cos_val, tan_val; printf("각도(λΌλ””μ•ˆ) μž…λ ₯:"); scanf("%lf", &angle); // 각도(λΌλ””μ•ˆ) μž…λ ₯ μš”μ²­ sin_val = sin(angle); cos_val = cos(angle); tan_val = tan(angle); printf("sin(%.2lf) = %lf\n", angle, sin_val); printf("cos(%.2lf) = %lf\n", angle, cos_val); printf("tan(%.2lf) = %lf\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