NPP_SAVE: new 1
cd**
CreateProcess() failed with error code 2:
The system cannot find the file specified.
g++ *test.cpp* -o test
Process started >>>
g++: error: *test.cpp*: Invalid argument
g++: fatal error: no input files
compilation terminated.
<<< Process finished. (Exit code 1)
NPP_RUN: test
- the specified file was not found
================ READY ================
also when I try to open nppexec manual it just shows nothing.there are all these topics and subtopics but if I want to see whats inside those it just shows a blank screen
You need to have the code file (in your case test.cpp) in your current working directory. If the code file is in a different directory, you need to specify where the file is located in the command.
can you help me with this too?
#include <iostream>
using namespace std;
int main()
{float x,y,z;
cout<<"care este valoarea laturii x a triunghiului?";
cin>>x;
cout<<"care este valoarea laturii y a triunghiului?";
cin>>y;
cout<<"care este valoarea laturii z a triunghiului?";
cin>>z;
if(x=y=z) cout<<"triunghiul este echilateral";
else if(x=y)||(x=z)||(y=z) cout<<"triunghiul este isoscel";
else if(x^2=y^2+z^2)||(y^2=x^2+z^2)||(z^2=x^2+y^2) cout<<"triunghiul este dreptunghic";