问题标题: 酷町堂:1579

0
0
已解决
杨云帆
杨云帆
中级守护
中级守护
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    double a,b,c;
    cin>>a>>b>>c;
    printf("%.1f",a);
    cout<<endl;
    printf("%.1f",b);
    cout<<endl;
    printf("%.1f",c);
    return 0;
} 

0
已采纳
金智涵
金智涵
中级守护
中级守护

核心代码

    double a=2.5,b=3.8,c=1.2;
    cin>>a>>b>>c;
    cout<<a<<endl;
    cout<<b<<endl;
    cout<<c<<endl;
0
潘一鸣
潘一鸣
初级守护
初级守护

#include<iostream>
using namespace std;
int main(){
    double a=2.5,b=3.8,c=1.2;
    输入>>a>>b>>c;
    输出<<a<<endl;
    cout<<b<<endl;
    cout<<c<<endl;
    return 0;
}

绝对AC,相信我

我要回答