慕用3493413
2019-01-02 11:07
16题怎么做啊谢谢了
x=a+b;y=(a++)+(b++);
c=a+b*((a++)+(b++));//(a++)+(b++)=a+b;a=a+1;b=b+1
#include <stdio.h>
#define F(x,y) x*(y)
int main() /*这里输入我们的主函数哦*/
{
int a = 3;
int b = 4;
int c;
c = F(a+b,(a++)+(b++));
printf("%d\n",c);
printf("C程序中一定是从我开始的");
return 0;
}C语言入门
928194 学习 · 21543 问题
相似问题
回答 1
回答 2
回答 2
回答 1
回答 4