Skip to content

Commit

Permalink
12.- C++ desde cero 2019🦸‍♂️ [Expresión matemática y librería math]
Browse files Browse the repository at this point in the history
  • Loading branch information
programadornovato committed Mar 19, 2020
1 parent 67f7032 commit cf6ce81
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions eje7ExpresionMat.cpp
@@ -0,0 +1,12 @@
#include <iostream>
#include <math.h>
int main(){
float x,y,res;
std::cout<<"Humano digita lo que se te pida \n";
std::cout<<"Valor de x: ";std::cin>>x;
std::cout<<"Valor de y: ";std::cin>>y;
res=(sqrt(x)) / (pow(x,2)-1);
std::cout<<"Aqui esta tu chingadera de resultado: "<<res<<"\n";
system("pause");
return 0;
}
Binary file added eje7ExpresionMat.exe
Binary file not shown.

0 comments on commit cf6ce81

Please sign in to comment.