求高手帮忙写下C++代码

2024-12-19 02:49:57
推荐回答(3个)
回答1:

#include
using namespace std;

void main(){
int age; //记录年龄
cout<<"Enter Your Age:"< cin>>age; //从键盘输入年龄
cout<<"Your Age is:"< getchar(); //等待接收字符结束程序(在某些时候程序结束后会自动关闭窗口,使得看不到结果)
getchar(); //同上
}

2
#include
using namespace std;

void main(){
float C,F; //C和F分别记录摄氏和华氏温度;
cout<<"Enter F:"< cin>>F; //键盘输入要转换的华氏温度值
C=(F-32)*5.0/9; //计算摄氏温度值
cout<<"Enter C:"< getchar(); //等待接收字符结束程序(在某些时候程序结束后会自动关闭窗口,使得看不到结果)
getchar(); //同上
}

回答2:

1.#include
using namespace std;
int main()
{
int age;//定义一个整形变量
cout<<"请输入年龄:";
cin>>str;//给age一个值
cout<<"你的年龄是:"<2.#include//使用流对象必须包含该头文件
using namespace std;

int main()
{
float F,C;//F为华氏温度,C为摄氏温度
cout<<"输入华氏温度:";
cin>>F;//给华氏温度一个值
C=(F-32)*5.0/9;//将计算的值赋给摄氏温度
cout<<"摄氏温度是:"< return 0;
}

回答3:

1
#include
using namespace std;

int main(){
int age;
cout<<"输入你的年龄"< cin>>age;
cout<<"你的年龄是"< return 0;
}

2
#include
using namespace std;

int main(){
float Ftemp,Ctemp;
cout<<"输入华氏温度"< cin>>Ftemp;
Ctemp=(Ftemp-32)*5.0/9;
cout<<"摄氏温度是"< return 0;
}