习题4.2

来源:互联网 发布:华为如何开数据流量 编辑:程序博客网 时间:2024/06/10 07:13
修改后
#include <stdio.h>#include <stdlib.h>int main(){    long a,b;    float x,y;    scanf("%d,%d",&a,&b);    scanf("%f,%f",&x,&y);    printf("a=%d,b=%d\n",a,b);    printf("x=%5f,y=%5f\n",x,y);}

原创粉丝点击