c语言程序:看下面程序写结果。

日期:2021-06-03 00:10:24 人气:1

c语言程序:看下面程序写结果。

#include <stdio.h>
int main()
{ int x=10,y=10;
printf("%d,%d\n",x--,--y);
return 0;
}
10,9
Process returned 0 (0x0) execution time : 0.019 s
Press any key to continue.
x-- 是一个表达式。<
    A+
热门评论