IneedHELP

please help me who to make a money changer using DEV C++..

thank you in advance guyss!!

i really need it..
Have any code written?
Hello johnjoshuaneverlose.

Since this has been around for a couple of days I will give you a start.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>

// function proto type.
void Function();

int main()
{
	//  Put your code here.
	//  ...

	return 0;
}  //  End main

void Function()
{
	//  Your code here.
}   // End function 


Beyond that I have heard that Dev C++ is old and outdated. If you can find a newer IDE/compiler
to use it will be a great benefit to you. I use Visual Studio 2015 and I believe that Visual Studio 2017
is out and each will cover the C++11. C++14 and C++17 standards. All will give you more flexibility with
new code that you can use along with more consistency in how you write your code to conform the the new
standards.

But if you are stuck with Dev C++ it will work.

Hope that helps,

Andy
Topic archived. No new replies allowed.