Fateme :)
کاربر فوقفعال
- ارسالها
- 93
- امتیاز
- 315
- نام مرکز سمپاد
- فرزانگان 3
- شهر
- تهران
- سال فارغ التحصیلی
- 94
- دانشگاه
- بهشتی
- رشته دانشگاه
- سخت افزار
پاسخ : سئوال c++
#include <cstdlib>
#include <iostream>
#include <graphics.h>
using namespace std;
int main(int argc, char *argv[])
{
int x,y;
cout<<"Please enter 2 numbers: "<<endl;
cin>>x>>y;
int r=10, c=1;
initwindow(900,900);
while(r<=100)
{
setcolor(c%16);
circle(x,y,r);
r=r+10;
c=c+1;
}
system("PAUSE");
return EXIT_SUCCESS;
}
#include <cstdlib>
#include <iostream>
#include <graphics.h>
using namespace std;
int main(int argc, char *argv[])
{
int x,y;
cout<<"Please enter 2 numbers: "<<endl;
cin>>x>>y;
int r=10, c=1;
initwindow(900,900);
while(r<=100)
{
setcolor(c%16);
circle(x,y,r);
r=r+10;
c=c+1;
}
system("PAUSE");
return EXIT_SUCCESS;
}