ya修 2021-07-26 10:37 采纳率: 100%
浏览 537
已结题

为什么我的程序在Dev c++上能运行,在VS 2019上不能

#include<stdio.h>
#include<string.h>
#define DENSITY 62.4
int main() 
{
    float weight, volume;
        int size, letters;
        char name[40];

    printf("Hi!What's your first name?\n");
    scanf("%s", name);
    printf("%s,what's your weught in pounds?\n", name);
    scanf("%f", &weight);
    size = sizeof(name);
    letters = strlen(name);
    volume = weight / DENSITY;
    printf("Well,%s,your volume is %2.2f cubic feet.\n", name, volume);
    printf("and we have %d bytes to store it.\n", size);

    return 0;
}

在VS 2019上 scanf 我改成了 scanf_s

  • 写回答

2条回答 默认 最新

  • qfl_sdu 2021-07-26 10:47
    关注

    vs2019检查严格,注意以下几点:
    1.变量在使用前必须初始化
    2.scanf改为scanf_s
    代码修改如下:

    #include<stdio.h>
    #include<string.h>
    #define DENSITY (float)62.4
    int main() 
    {
        float weight = 0, volume = 0;
        int size = 0, letters = 0;
        char name[40] = {0};
        printf("Hi!What's your first name?\n");
        scanf_s("%s",name,39);
        printf("%s,what's your weught in pounds?\n", name);
        scanf_s("%f", &weight);
        size = sizeof(name);
        letters = strlen(name);
        volume = weight / DENSITY;
        printf("Well,%s,your volume is %2.2f cubic feet.\n", name, volume);
        printf("and we have %d bytes to store it.\n", size);
        return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 8月3日
  • 已采纳回答 7月26日
  • 创建了问题 7月26日

悬赏问题

  • ¥15 为啥画版图在Run DRC会出现Connect Error?可我Calibre的hostname和计算机的hostname已经设置成一样的了。
  • ¥20 网站后台使用极速模式非常的卡
  • ¥20 Keil uVision5创建project没反应
  • ¥15 mmseqs内存报错
  • ¥15 vika文档如何与obsidian同步
  • ¥15 华为手机相册里面的照片能够替换成自己想要的照片吗?
  • ¥15 陆空双模式无人机飞控设置
  • ¥15 sentaurus lithography
  • ¥100 求抖音ck号 或者提ck教程
  • ¥15 关于#linux#的问题:子进程1等待子进程A、B退出后退出(语言-c语言)