为了账号安全,请及时绑定邮箱和手机立即绑定

%d/n,的后面应该加上什么?

hello.c
#include <stdio.h>
int main()
{
    int x,y;
    x = 10;
    y = -3;
    printf("x+y=%d\n",     ); 
    printf("x-y=%d\n",     );
    printf("x*y=%d\n",     );
    printf("x/y=%d\n",     );
    printf("x%y=%d\n",     ); 
    return 0;   
}
本课程编程练习请

正在回答

3 回答

hello.c
#include <stdio.h>
int main()
{
    int x,y;
    x = 10;
    y = -3;
    printf("x+y=%d\n", x+y );  
    printf("x-y=%d\n",  x-y  );
    printf("x*y=%d\n",  x*Y );
    printf("x/y=%d\n", x/y );
    printf("x%y=%d\n",  x%Y );  
    return 0;    
}//上面的双引号里的%d意思是输出结果的类型属于带符号十进制整数,实际输出的值在逗号后面。

0 回复 有任何疑惑可以回复我~

加上%d所代表的10进制变量

0 回复 有任何疑惑可以回复我~

#include <stdio.h>

#include <stdlib.h>

int main()

{

int x,y,t;

    x = 10;

    y = -3;

    t=x+y;

    printf("x+y=%d\n",t);

    t=x-y;  

    printf("x-y=%d\n",t);

t=x*y;

    printf("x*y=%d\n",t);

t=x/y;

    printf("x/y=%d\n",t);

t=x%y;

    printf("x%y=%d\n",t); 

system("pause");

return 0;

}

//结果
//x+y=7
//x-y=13
//x*y=-30
//x/y=-3
//xy=1
//请按任意键继续. . .


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

%d/n,的后面应该加上什么?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信