Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
24
Добавлен:
17.04.2013
Размер:
428 б
Скачать
#include "stdafx.h"
#include <string>
#include <iostream>
#include <conio.h>
#include "func0.h"
#include "func1.h"
#include "func2.h"
#include "func3.h"
#include "func4.h"
using namespace std ;

int main()
{
  	int f0;
	string str,ptr;
	
	while(1)
	{
		cout<<"enter expression: ";
		cin>>str;
		f0=func0(str);
		if(f0!=-1)
			str=func4(func3(str));
		cout<<str<<endl;
	}
	getch();
	return 0;
}



Соседние файлы в папке Calc