Recent content by m a e 0 9

  1. M

    🔒 Closed C language ano po ang mali?

    #include <stdio.h> #include <stdbool.h> bool schrodingersFunction(/some arguemnt/) { } int main() { bool realityCheck = true; int doesItExist; doesItExist = schrodingersFunction(); printf("It does!\n"); printf("\nNo it doesnt!"); return 0; } Output: N/A It·does! No·it·doesnt!
  2. M

    🔒 Closed C language patulong po baguhan lang po ako mga master

    Vector Cross Products by CodeChum Admin After doing the scalar product of vectors, we can now move to cross products. Taking a cross product of vectors is a bit trickier than getting the scalar product and so a hint was provided. Using the struct vector with components i,j, and k,create a...
  3. M

    🔒 Closed C language patulong po baguhan lang po ako mga master

    Scalar Multiplication Same as vector addition, we need to multiply each of the first vector’s components to that of the 2nd vector’s corresponding components. Let’s try to create a vector adder using a struct datatype namedvector with components x,y, ,and z. Afterwards, we'll create a scalar...
  4. M

    🔒 Closed C LANGUAGE PA HELP PO?

    Hey I’ve got this cool idea for an app! It’s kind of simple but just hear me out. All the user has to do is enter a bunch of integers. Then the application prints the largest sum of a strictly ascending sequence of the array. A strictly ascending sequence is a sequence where the current number...
  5. M

    ❓ Help C LANGUAGE PA HELP PO

    Cody doesn't know what The Programmer wants for Christmas so he asked The Programmer if he had a wish-list. The Programmer's eyes lit up and he immediately recited 5 things that he had always wanted to buy. The Programmer will input the 5 things then Cody will print it. Input 1. Name of the...
  6. M

    🔒 Closed C LANGUAGE PATULONG PO

    Description The integer to be processed. Constraints 0 <= n <= 2147483647 Sample 45 Output The first line will contain a message prompt to input the value of n. The succeeding line will contain all the digits of n that are greater than 3 and if there is none, the word "none". Enter·n:·415 4 5
  7. M

    🔒 Closed C LANGUAGE PA HELP PO

    The second integer of the range Constraints The value of n2 is guaranteed to be greater than or equal to n1. Sample 10 Output The first line will contain a message prompt to input the value of n1. The second line will contain a message prompt to input the value of n2. The next line will contain...
  8. M

    🔒 Closed Pa help po

    Theres something I want to know. I want to know the sum of things so that I can say that I know something. Instructions Create a function named “sumThing” that takes two integers and returns the sum of the two integers called "thisThing"and “thatThing”. The values of thisThing and thatThing are...
  9. M

    🔒 Closed Pa help guys

    paano po if c language?
  10. M

    🔒 Closed Pa help guys

    I'm really fond of even numbers, you know? That's why I'll be letting you make another even number problem yet again. This time, you need to print from a range of two inputted numbers, n1 and n2 (inclusive), all the even numbers from n2 down to n1, in descending order. Input 1. Value of n1...
Back
Top