#include <stdio.h> int main() { int z, x = 5, y = -10, a = 4, b = 2; z = x++ - --y * b / a; printf("%d\n", z); return 0; }
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题