#include
using namespace std;
void main(){
int age; //记录年龄
cout<<"Enter Your Age:"<
cout<<"Your Age is:"<
getchar(); //同上
}
2
#include
using namespace std;
void main(){
float C,F; //C和F分别记录摄氏和华氏温度;
cout<<"Enter F:"<
C=(F-32)*5.0/9; //计算摄氏温度值
cout<<"Enter C:"<
getchar(); //同上
}
1.#include
using namespace std;
int main()
{
int age;//定义一个整形变量
cout<<"请输入年龄:";
cin>>str;//给age一个值
cout<<"你的年龄是:"<
using namespace std;
int main()
{
float F,C;//F为华氏温度,C为摄氏温度
cout<<"输入华氏温度:";
cin>>F;//给华氏温度一个值
C=(F-32)*5.0/9;//将计算的值赋给摄氏温度
cout<<"摄氏温度是:"<
}
1
#include
using namespace std;
int main(){
int age;
cout<<"输入你的年龄"<
cout<<"你的年龄是"<
}
2
#include
using namespace std;
int main(){
float Ftemp,Ctemp;
cout<<"输入华氏温度"<
Ctemp=(Ftemp-32)*5.0/9;
cout<<"摄氏温度是"<
}