What's new

Closed Pa help po my error kasi

Status
Not open for further replies.

Jmrie_

in memoriam 1995-2021
Joined
Aug 21, 2017
Posts
104,956
Solutions
1
Reaction
53,217
Points
27,061
Age
28
#include <iostream>
using namespace std;

int main()
{
int a;
int b;
int sum;

cout << "enter the number boss \n";
cin >> a;

cout << "enter the number boss \n";
cin >> b;

sum = a + b;
cout << "the sum of those number is" << sum << endl;

return 0;

}

my error siya paano ma fix
 
source_file.cpp:1:21: fatal error: iosstream: No such file or directory
#include <iosstream>
^
compilation terminated.

anu po ibig sabihin niyan?

Ibig lang sabihin ay ginagamit mo itong library na to " <iosstream>" pero hindi existing sa project mo. Sure ka ba na meron kang ganyan?
 
source_file.cpp:1:21: fatal error: iosstream: No such file or directory
#include <iosstream>
^
compilation terminated.

anu po ibig sabihin niyan?
yung 'iosstream' library e di available... mali spelling... iostream dapat di 'iosstream'...
 
Ibig lang sabihin ay ginagamit mo itong library na to " <iosstream>" pero hindi existing sa project mo. Sure ka ba na meron kang ganyan?
ahh ganun po ba kanina kasi sir tinype ko yan tapos my sumagot yan sa kabilang thread ayun di na nag error
 
Status
Not open for further replies.

Similar threads

Back
Top