Recent content by martusa

  1. martusa

    Comp Sci How do I draw a circle pattern inside a square in C++?

    i have already searched for it,but i don’t know how to make square and circle work together . I have been studying code for less than a month, and it’s hard to find out how things work
  2. martusa

    Comp Sci How do I draw a circle pattern inside a square in C++?

    my programming level isn’t that high,i wasn’t able to find more information how to do this on the internet
  3. martusa

    Comp Sci How do I draw a circle pattern inside a square in C++?

    i only managed to draw a square and don’t know how to put circle pattern inside of it #include <stdio.h> int main() { int totalrowcol; printf("Enter the number of rows: "); scanf_s("%d", &totalrowcol); for (int rowno = 1; rowno <= totalrowcol; rowno++) { for (int...