Search:

Type: Posts; User: damha

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    2,168

    Thanks guys it was a silly problem XD, I didn't...

    Thanks guys it was a silly problem XD, I didn't add the integer in printf like nonoob says.
    It supposed to be printf("The GCD is: %d/n" num1) lol that was easy
  2. Replies
    4
    Views
    2,168

    Well I have to get the the greatest common...

    Well I have to get the the greatest common divisor from the 21 and 15, and I'm using C.
    Hope that answered your questions
  3. Replies
    4
    Views
    2,168

    The greatest common divisor (GCD) help..

    I made this program (using C not C++):



    #include<stdio.h>
    int num1, num2;
    int main() {
    printf("Type in two numbers: ");
    scanf("%d %d", &num1, &num2);
    while (num1!=num2){
  4. Replies
    11
    Views
    1,711

    I need help with this please (IMPORTANT)

    I have this question that I don't understand how to start writing it:



    Question 6.
    "supervocalic" is a word made up by Eric Chaikin. It describes words or phrases that contain all the 5...
Results 1 to 4 of 4