- 001
- 002
- 003
- 004
- 005
- 006
- 007
- 008
- 009
- 010
- 011
- 012
- 013
- 014
- 015
- 016
- 017
- 018
- 019
- 020
- 021
- 022
- 023
- 024
- 025
- 026
- 027
- 028
- 029
- 030
- 031
- 032
- 033
- 034
- 035
- 036
- 037
- 038
- 039
- 040
- 041
- 042
- 043
- 044
- 045
- 046
- 047
- 048
- 049
- 050
- 051
- 052
- 053
- 054
- 055
- 056
- 057
- 058
- 059
- 060
- 061
- 062
- 063
- 064
- 065
- 066
- 067
- 068
- 069
- 070
- 071
- 072
- 073
- 074
- 075
- 076
- 077
- 078
- 079
- 080
- 081
- 082
- 083
- 084
- 085
- 086
- 087
- 088
- 089
- 090
- 091
- 092
- 093
- 094
- 095
- 096
- 097
- 098
- 099
- 100
#include <iostream>
#include <string>
#include <fstream>
#include <locale>
#include <windows.h>
#include <conio.h>
#include <cstdlib>
using namespace std;
struct Book
{
string author;
string name;
string year;
};
struct toolstruct
{
string filename;
ifstream file_for_read;
ofstream file_for_write;
unsigned int struct_cnt = 0;
HANDLE stdouthandle = GetStdHandle(STD_OUTPUT_HANDLE);
COORD pos;
Book * shelfptr;
};
enum SSORT_TYPE
{
SSORT_INC = 1,
SSORT_DEC = -1
};
void Display(toolstruct*);
void Edit(toolstruct*);
void Sort(toolstruct*, SSORT_TYPE);
void Write(toolstruct*);
int main()
{
setlocale(LC_ALL, "Russian");
toolstruct ftool;
char buff;
unsigned int i = 0;
do
{
cout<<"Введите имя каталога:"<<endl;
getline(cin, ftool.filename);
ftool.file_for_read.open(ftool.filename.c_str(), ios_base::in);
}while(!ftool.file_for_read.is_open());
while(!ftool.file_for_read.eof() && ftool.struct_cnt<20)
{
ftool.file_for_read>>buff;
if(buff=='~'){ftool.struct_cnt++;}
};
ftool.shelfptr = new Book[ftool.struct_cnt];
ftool.file_for_read.clear();
ftool.file_for_read.seekg(0);
ftool.shelfptr = new Book[ftool.struct_cnt];
do
{
ftool.file_for_read>>buff;
if(buff=='~')
{
getline(ftool.file_for_read, ftool.shelfptr[i].author);
getline(ftool.file_for_read, ftool.shelfptr[i].name);
getline(ftool.file_for_read, ftool.shelfptr[i].year);
i++;
}
}while(!ftool.file_for_read.eof());
ftool.file_for_read.close();
Display(&ftool);
}
void Display(toolstruct* ts)
{
//void (*callback_ptr)(toolstruct*) = Display;
system("cls");
cout<<"Содержимое файла "<<ts->filename<<":"<<endl
<<" Автор "<<"Название "<<"Год публикации"<<endl;
if(ts->struct_cnt != 0)
{
for(unsigned short j = 0; j<ts->struct_cnt; j++)
{
ts->pos.X = 0;
ts->pos.Y = j+2;
SetConsoleCursorPosition(ts->stdouthandle, ts->pos);
cout<<j+1<<". ";
if(ts->shelfptr[j].author.length()<=20)
{cout<<ts->shelfptr[j].author;}
else{cout<<ts->shelfptr[j].author.substr(0,16)+"...";}
ts->pos.X = 20;
SetConsoleCursorPosition(ts->stdouthandle, ts->pos);
if(ts->shelfptr[j].name.length()<=20)
Взято из паблика втентакле, где собираются студни со своими неординарными решениями лабораторных. Задача была реализовать чтение-запись структур в файл/из файла, а также сортировку по убыванию/возрастанию одного из полей.
Fluttie 10.05.2016 01:55 # 0
Antervis 10.05.2016 05:31 # 0
Fluttie 10.05.2016 07:38 # 0
guest 13.05.2016 17:09 # 0
defecate-plusplus 13.05.2016 17:19 # 0
Fluttie 10.05.2016 07:58 # 0
gost 10.05.2016 08:04 # 0
PS, "getline(cin, ftool.filename)" - убеждённый процедурник писал?
Fluttie 10.05.2016 11:57 # +1
gost 11.05.2016 13:36 # −1
bormand 11.05.2016 18:59 # 0
Fluttie 12.05.2016 00:29 # 0
Fluttie 10.05.2016 09:48 # 0
1024-- 10.05.2016 10:07 # +1
> смотрел бы в сторону шарпа, формочек
Каких формочек? Это же не куличики в песочнице, это структуры и файлы, C++, файлопотоков и консолечки здесь хватит. Или даже C и FILE*.
Fluttie 10.05.2016 11:56 # 0
bormand 10.05.2016 20:38 # +2
Вот и выросло поколение...
guest 10.05.2016 22:06 # +1
Выросло и наплодило программ, у которых аутпут только ввиде GUI таблиц. Получить этот аутпут и передать дальше нельзя никак, если только не дергать их полудокументированный API
Fluttie 10.05.2016 22:40 # 0
К слову.
3_dar 10.05.2016 19:56 # 0
bormand 10.05.2016 20:46 # +4
> getline(cin, ftool.filename);
gost 11.05.2016 13:39 # +3