製品
Mind Mapping Software
Outlining Software
ガントチャートソフトウェア
用途
教育向けマインドマップ
Mind maps for Business
個人的な開発のためのマインドマップ
マインドマッピングの利点
リソース
特徴
教育
個人と仕事
デスクトップ
Video Tutorials
Watch tips and tricks about using Mindomo.
Help Center
Detailed help guide on configuring and using Mindomo.
記事
マインドマッピングとは何ですか?
How to Mind Map?
How to Take Notes with Mind Maps?
How to Prioritize Tasks with Mind Maps?
What is a Concept Map?
Top 29 Mind Map Examples
価格
ログイン
登録
製品
Mind Mapping Software
Outlining Software
ガントチャートソフトウェア
用途
教育向けマインドマップ
Mind maps for Business
個人的な開発のためのマインドマップ
マインドマッピングの利点
記事
マインドマッピングとは何ですか?
How to Mind Map?
How to Take Notes with Mind Maps?
How to Prioritize Tasks with Mind Maps?
What is a Concept Map?
Top 29 Mind Map Examples
特徴
教育
個人と仕事
デスクトップ
ヘルプ
Video Tutorials
Help Center
価格
登録
ログイン
カテゴリー
全て
-
vectors
-
operations
-
angles
-
coordinates
によって
Francisco Cisneros
4年前.
266
SWITCH DE LOS VECTORES
開く
もっと見る
Math156
Shauna Langeにより
Chapter 5: Trigonometric Function
Yap Wei Liにより
Vectors CPT Jagbir Bhullar MCV4U1-03
Jagbir Bhullarにより
Electromechanical Engineer
Alberto M.により
SWITCH DE LOS VECTORES
case "4":
theta=90-alpha;
System.out.println("EL ANGULO ES:"+theta);
System.out.println("GEOMETRICAS A POLARES");
System.out.println("INGRESE EL ANGULO"); alpha=dato.nextDouble();
case "2":
y=(Math.sin(theta_t))*m;
System.out.println("Y ES:"+y);
x=(Math.cos(theta_t))*m;
System.out.println("X ES:"+x);
theta_t=(Math.PI*theta)/(180);
System.out.println("POLARES A RECTANGULARES");
switch(opcion){
opcion=dato.nextLine();
System.out.println("MENU");
System.out.println("4) GEOMETRICAS A POLARES");
case 4
System.out.println("3) POLARES A GEOMETRICAS");
case 3
System.out.println("2) POLARES A RECTANGULARES");
case 2
System.out.println("1) RECTANGULARES A POLARES");
case 1
String
opcion
default:
}
System.out.println("INGRESE UN NUMERO VALIDO");
System.out.println("ERROR");
case "3":
alpha=90-theta;
System.out.println("EL MODULO ES:"+m)
System.out.println("EL ANGULO ES:"+alpha);
System.out.println("POLARES A GEOMETRICAS");
System.out.println("INGRESE EL ANGULO"); theta=dato.nextDouble();
System.out.println("INGRESE EL MODULO"); m=dato.nextDouble();
case "1":
break;
theta_t=(theta*180)/(Math.PI);
System.out.println("EL ANGULO ES:"+theta_t);
theta=Math.atan(y/x);
m=Math.sqrt((Math.pow(x,2)+Math.pow(y,2)));
System.out.println("EL MODULO ES:"+m);
System.out.println("RECTANGULARES A POLARES");
System.out.println("INGRESE Y"); y=dato.nextDouble();
System.out.println("INGRESE X"); x=dato.nextDouble();
System.out.println("ESCOJA EL NUMERO DE LA OPERACION A REALIZAR");
System.out.println("UTILIZAR VECTORES SOLO DEL PRIMER CUADRANTE");
Scanner dato = new Scanner(System.in);
System.out.println("CONVERSION DE VECTORES");
double
alpha
theta
theta_t
m
x
y