Программа производит вывод населения городов в
упорядоченном виде, в виде таблицы.

//------------------------------------------------------------------------------------------------
#include <iostream>
#include <conio.h>
#include <iomanip>
using namespace std;
int main()
{
long count1=842785, count2=47, count3=4578;
int i=4, b=15;
char a='.';
cout<<setw(i)<<"City"<<setw(b)<<"Population"<<endl
<<setw(i)<<"Moskow"<<setw(b)<<setfill(a)<<count1<<endl
<<setw(i)<<"Novoeb.."<<setw(b)<<setfill(a)<<count2<<endl
<<setw(i)<<"Kirov"<<setw(b)<<setfill(a)<<count3<<endl;
getch();
return 0;
}
//------------------------------------------------------------------------------------------------

Хакинг | Главная | Программирование

Hosted by uCoz