Please enter the keyword to search
查看更多 "" 的搜索结果
Define three integer variables x,y,z, assign x,y values 2, 3,x minus y values assigned to z, and print z
0 Answer
#include int main() { int x , y , z; x = 2; y = 3; z = x - y; printf("%d", z); return 0; }
这家伙很懒,什么都没留下...