Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~591 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for finchh

HI. I made a program for my homework it doesnt fulfill the task completely but i think it's gonna do the job.What do you say will it do the job or not ???? Heres the task:Write a program square that calculates the squares of all numbers that are contained in …

Member Avatar for Ancient Dragon
0
104
Member Avatar for finchh

I need to write a program square that calculates the squares of all numbers that are contained in a file of floating point numbers. The obtained new numbers form a new file. For example if the file contains the numbers 1, 2.5, 0.1, the numbers 1, 6.25 and 0.01 form …

Member Avatar for Ancient Dragon
0
178
Member Avatar for Theanonymous

[QUOTE=Theanonymous;1175837]this is the code which I write, this doesn't fulfill the condition completely but I think that is not a problem [CODE] #include <iostream> #include <fstream> #include <string> using namespace std; int main() { cout << "Enter the input file name: "; string finame; cin >> finame; ifstream in; in.open(finame.c_str()); …

Member Avatar for finchh
0
309

The End.