Recent content by martusa
-
Comp Sci Drawing Figures in C++: Put Circle Pattern in Square
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- martusa
- Post #5
- Forum: Engineering and Comp Sci Homework Help
-
Comp Sci Drawing Figures in C++: Put Circle Pattern in Square
my programming level isn’t that high,i wasn’t able to find more information how to do this on the internet- martusa
- Post #3
- Forum: Engineering and Comp Sci Homework Help
-
Comp Sci Drawing Figures in C++: Put Circle Pattern in Square
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...- martusa
- Thread
- C++ Drawing Programming c++
- Replies: 12
- Forum: Engineering and Comp Sci Homework Help