Search:

Type: Posts; User: muhammetekurt

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    2,099

    what is goto?

    What exactly is the term goto and where is it used?

    How can I delete goto from this code?

    Thanks...
  2. Replies
    1
    Views
    4,234

    up up up Please help!!!!!

    up up up
    Please help!!!!!
  3. Replies
    1
    Views
    4,234

    Hungarian algorithm (help)!!

    How can I write steps 3 and 4 of this algorithm?


    ----> Step 3: Cover all zeros with a minimum number of lines
    We will now determine the minimum number of lines (horizontal or vertical) that...
  4. yes I think you are right. So how do I get the...

    yes I think you are right. So how do I get the product of two matrices in this way with the help of pointers?
  5. I've been trying to solve this problem for 2 days...

    I've been trying to solve this problem for 2 days but I couldn't find it. Please help!!!!!!
  6. How do I print this matrix defined with pointers? PLEASE HELPPP

    I defined this matrix with pointers, but I couldn't figure out how to print like a normal matrix print. like :





    for (i = 0; i < row; i++)
    {
    for (j = 0; j < col; j++)
    cout <<...
  7. yes, this way works but how can i write for any...

    yes, this way works but how can i write for any value of 0-10 not only 4. thanks... :))
  8. How do I multiply two square matrices by 1 nested loop?

    I managed to print the matrix in one loop, but how can I multiply two matrices in 2 loops (1 nested loop), please help!!




    #include<iostream>
    using namespace std;
    #define size 4
    int main()...
  9. Replies
    3
    Views
    6,300

    How can i convert c++ to c (help!!!)

    hello everyone, how can i convert this code from C++ to C language. This is quite important to me. Please help me. thanks...



    #include <iostream>
    #include <vector>


    static const int...
  10. Replies
    11
    Views
    2,806

    yes it is. how can i reach the answer?

    yes it is. how can i reach the answer?
  11. Replies
    11
    Views
    2,806

    How many distinct ways can a player checkout with...

    How many distinct ways can a player checkout with a score less than 100?
  12. Replies
    11
    Views
    2,806

    end of term project. 15% effect on our grade...

    end of term project. 15% effect on our grade point average.
  13. Replies
    11
    Views
    2,806

    actually, I am junior developer. This is my first...

    actually, I am junior developer. This is my first year at programming and university. So, I didn't understand how to set up an algorithm and how to solve this problem. Our teacher gave us this...
  14. Replies
    11
    Views
    2,806

    Help me!! My Final Homework (EULER 109)

    Hello everyone, is there anyone who can help me with my homework??
    Please help me, thanks...

    Problem 109 - Project Euler
  15. Replies
    32
    Views
    27,410

    I solved the problem by own way but it is very...

    I solved the problem by own way but it is very slow. How can i get to the conclusion faster? it takes about 4 hours. At least answer this. :(

    MY CODE:
    insert

    #include<stdio.h>...
  16. Replies
    32
    Views
    27,410

    Thank for your solving but actually i don’t...

    Thank for your solving but actually i don’t understand exactly. Can you share your algorithm with us? This homework is very imptortant to me. Thanks again.
  17. Replies
    32
    Views
    27,410

    My homework c project (help)

    PROBLEM
    Let g(n) be a sequence defined as follows:
    g(4) = 13,
    g(n) = g(n-1) + gcd(n, g(n-1)) for n > 4. gcd is great common divisor.


    The first few values are:


    n 4 5 6 7 ...
Results 1 to 17 of 18