0
已解决
王雨涵
中级守护
中级守护
4367 报身高(height)经验值:100
不许抄袭,一旦发现,直接清空经验!
题目描述 Description
给智能电子身高测量仪,写一个显示程序。 输入一个数字N,表示身高,程序会输出一句英文, Your height is Ncm”,其中N是输入的数字。例如:输入158,输出是“Your height is 158cm”
输入描述 Input Description
一个整数,表示身高。
输出描述 Output Description
如题所述
样例输入 Sample Input
158
样例输出 Sample Output
Your height is 158cm
#include<iostream>
using namespace std;
int main(){
cout<<"Your height is 158";
return 0;
}
0分代码
采纳第一个