GIP Aufgabe 7
#include "stdafx.h"
#include
using namespace std;
int main()
{
int a[20] = {0};
char text[201];
int wl = 0;
cout << "Text = ? ";
cin.get(text,200);
for(int i = 0;true;i++)
{
if(text[i] == ' ' || text[i] == 32 || text[i] == '\0')
{
if(wl>20)
wl=20;
if(wl>0)
a[wl - 1] = a[wl - 1] + 1;
wl=0;
}
else
wl++;
if(text[i] == '\0')
break;
}
for(int i=0; i < 20; i++)
{
if(a[i] != 0)
{
if(i < 10)
cout << " ";
cout << i + 1 << " ";
for(int ii=0;ii < a[i];ii++)
{
cout << "#";
}
cout << endl;
}
}
return 0;
}
Veröffentlicht am: 23.11.2005 von: CHR | publiziert in: C, FH-Aachen