马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我在学到小甲鱼c语言的第六节课时,动动手的第二题,用了char,我用小甲鱼的代码,输出时,就是不显示输入的名字“小甲鱼”,然后就会是乱码;这是代码,我的mingw是版本x86_64-8.1.0-release-posix-seh-rt_v6-rev0
我也不知道是不是版本的问题,想问问各位大佬们#include <stdio.h>
int main()
{
char name[256];
float height, weight;
printf("请输入您的姓名:");
scanf("%s", name);
printf("请输入您的身高(cm):");
scanf("%f", &height);
printf("请输入您的体重(kg):");
scanf("%f", &weight);
printf("========== 正在为您转换 ==========\n");
height = height / 2.54; // 厘米转换为英寸
weight = weight / 0.453; // 公斤转换为磅
printf("%s的身高是%.2f(in),体重是%.2f(lb)\n", name, height, weight);
return 0;
}
|