|
|
#2
绛初2019-08-21 17:44
|
#include<stdio.h>
int main()
{
float a,b,c;
a=5.2;
b=3.1;
c=a+b;
printf("%f",c);
return 0;
}
8.299999
[Process completed - press Enter]