Search:

Type: Posts; User: badg96

Search: Search took 0.09 seconds.

  1. Replies
    7
    Views
    665

    Re: code to draw circles on a chart

    so that I can see the circles I use the perspective of this link: http: //pandionj.iscte-iul.pt.
    It is a learning software from my college.
  2. Replies
    7
    Views
    665

    Re: code to draw circles on a chart

    static ColorImage circle ( int[] v, int raio, int espaçamento, Color cor){
    ColorImage circle1 = new ColorImage ((v.length*(2*raio))+(v.length-1)*espaçamento, max(v)+raio+1);
    int x=...
  3. Replies
    7
    Views
    665

    Re: code to draw circles on a chart

    https://imgur.com/a/GnjbeJZ

    here is the image of the result, I don't know why it's not making a perfect circle
  4. Replies
    7
    Views
    665

    code to draw circles on a chart

    Good morning, I'm in the middle of a course project where I have to make a circle chart with a vector, spacing, color and radius as argument. But as you can see in the picture you are making squares...
  5. Replies
    7
    Views
    770

    Re: division without division operator

    i already solve thanks for help.
  6. Replies
    7
    Views
    770

    Re: division without division operator

    Should the method count the number of times a subtraction is made? no need to count, just subtract the divisor and dividend until the result is no less than the dividend

    What is in c when the...
  7. Replies
    7
    Views
    770

    Re: division without division operator

    Thanks for reply. I need the function to divide two numbers without the division operator and so I am using subtraction method, but when I perform the function I for example choose the number 31 for...
  8. Replies
    7
    Views
    770

    division without division operator

    hello i started learning how to program this week and i am not able to complete this exercise you can see what is wrong in the code

    static int division (int a, int b) {
    int c= a-b;
    while (c...
Results 1 to 8 of 8