用scanf函数输入数据,使得下面程序运行结果为a=2,b='x',c='z' include <stdio.h> int main() { int a, b; scanf("%d%c", &a,&b ); printf(" ",a,b,b+2); return 0; }

时间:2024-01-03 13:59:30

相似题目