c_cpp conditions.c#CS50

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp conditions.c#CS50相关的知识,希望对你有一定的参考价值。

// Conditions and relational operators

#include <cs50.h>
#include <stdio.h>

int main(void)
{
    // Prompt user for x
    int x = get_int("x: ");

    // Prompt user for y
    int y = get_int("y: ");

    // Compare x and y
    if (x < y)
    {
        printf("x is less than y\n");
    }
    else if (x > y)
    {
        printf("x is greater than y\n");
    }
    else
    {
        printf("x is equal to y\n");
    }
}

以上是关于c_cpp conditions.c#CS50的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp CS50 vigenere.c

c_cpp C语言-CS520

c_cpp cs_stepper_01.ino

c_cpp 50.cpp

c_cpp 50. Pow(x,n)

c_cpp ELRO Flamingo FA50R远程协议