用下面的scanf函数输入数据,使a=3,b=7,x=8.5,y=71.82,c1='A’,c2=‘a’,并将其依次输出。
时间: 2023-05-31 13:01:30 浏览: 92
程序设计-用scanf函数实现数据的输入.pptx
```c
#include <stdio.h>
int main() {
int a, b;
float x, y;
char c1, c2;
scanf("%d %d %f %f %c %c", &a, &b, &x, &y, &c1, &c2);
printf("a=%d, b=%d, x=%.1f, y=%.2f, c1=%c, c2=%c", a, b, x, y, c1, c2);
return 0;
}
```
输出结果为:
```
a=3, b=7, x=8.5, y=71.82, c1=A, c2=a
```
阅读全文