목차
c-1
3-4
3-17
3-30
#include <iostream.h>
3-4
3-17
3-30
#include <iostream.h>
본문내용
c-1
3-4
3-17
3-30
#include
#include
void main()
{
double a,b,c,d,x,y;
float f,tp,tq,tf;
cout << \"F=\";cin >> f;
cout << \"theta F=\"; cin >> tf;
cout << \"theta P=\"; cin >> tp;
cout << \"theta Q=\"; cin >> tq;
a=cos(tp/180*3.141592);
b=cos(tq/180*3.141592);
c=sin(tp/180*3.141592);
d=sin(tq/180*3.141592);
x=f*cos(tf/180*3.141592);
y=f*sin(tf/180*3.141592);
b=b/a;
x=x/a;
a=1;
d=d-c*b;
y=y-c*x;
y=y/d;
x=x-b*y;
cout << \"p=\"<
<<\"Q=\"<
}
3-4
3-17
3-30
#include
#include
void main()
{
double a,b,c,d,x,y;
float f,tp,tq,tf;
cout << \"F=\";cin >> f;
cout << \"theta F=\"; cin >> tf;
cout << \"theta P=\"; cin >> tp;
cout << \"theta Q=\"; cin >> tq;
a=cos(tp/180*3.141592);
b=cos(tq/180*3.141592);
c=sin(tp/180*3.141592);
d=sin(tq/180*3.141592);
x=f*cos(tf/180*3.141592);
y=f*sin(tf/180*3.141592);
b=b/a;
x=x/a;
a=1;
d=d-c*b;
y=y-c*x;
y=y/d;
x=x-b*y;
cout << \"p=\"<
소개글