0
Follow
0
View

Problem with #c language # : Define three integer variables x,y,z to assign x,y values 2, 3,x minus the value of y to z, output z

cxmingko 注册会员
2023-02-28 00:11
    < li > reference is as follows: < / li >
#include 

int main()
{
    int x , y , z;
    x = 2;
    y = 3;
    z = x - y;
    printf("%d", z);

    return 0;
}

About the Author

Question Info

Publish Time
2023-02-28 00:11
Update Time
2023-02-28 00:11