Se citeste din "clasa.in" nr de fete si de baieti dintr-o clasa. Sa se afiseze o diagrama corespunzatoare.
#include<iostream>
#include<fstream>
#include<graphics.h>
using namespace std;
int main()
{int u,x,y;
ifstream f("clasa.in");
f>>x>>y;
u=(x*360)/(x+y);
initwindow(1400,900);
setfillstyle(SOLID_FILL,14);
pieslice(100,200,0,u,100);
setfillstyle(SOLID_FILL,4);
pieslice(100,200,u,360,100);
setfillstyle(SOLID_FILL,14);
bar(0,30,30,60);
setfillstyle(SOLID_FILL,4);
bar(0,60,30,90);
outtextxy(0,5,"Legenda");
outtextxy(30,30,"FETE");
outtextxy(30,65,"BAIETI");
getch();
}