- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
#include "stdafx.h"
#include "expression.h"
#include <vector>
int _tmain(int argc, _TCHAR* argv[]) {
//Инициализация
std::vector<expression> arrayOfExpressions;
std::string inputString;
//Ввод количества выражений
printf( "Enter expressions count: " );
int countOfExpressions = 0;
scanf( "%d", &countOfExpressions );
//Ввод самих выражений
for ( int i = 1; i <= countOfExpressions; i++ ) {
printf( "Enter expression: " );
scanf( "%s", inputString );
arrayOfExpressions.push_back( expression( inputString ) );
}
//Подсчёт операторов
int total = 0;
for (int i = 0; i < arrayOfExpressions.size(); i++)
total += arrayOfExpressions.at(i).operatorsCount();
printf( "Total operators = %d", total );
//Освобождение памяти
arrayOfExpressions.erase(arrayOfExpressions.begin(),arrayOfExpressions.end());
return 0;
}
Один из уже известных вам студентов написал вот это. Вроде получше.
Fai 11.04.2012 21:46 # 0
Говногость 11.04.2012 22:08 # 0
Где здесь main?
>_tmain
Где здесь С++?
Fai 11.04.2012 22:12 # 0
Lure Of Chaos 11.04.2012 23:44 # +1
а все остальные - пехепе?
Fai 12.04.2012 02:13 # 0
absolut 12.04.2012 17:32 # 0
Lure Of Chaos 12.04.2012 18:45 # 0
someone 13.04.2012 16:10 # +3
Буээээ.
guest8 09.04.2019 13:05 # −999