mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
15 lines
266 B
C++
15 lines
266 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
#include <cmath>
|
|
using namespace std;
|
|
int main(){
|
|
double a,b;
|
|
int c;
|
|
scanf("%lf%lf%d",&a,&b,&c);
|
|
printf("height:%.2lfm,weight:%.1lfkg,age:%dyears.",a,b,c);
|
|
return 0;
|
|
}
|