sswdasb 发表于 2019-8-25 12:08:20

Visual C++6.0无法运行

点击运行以后总显示this file does not exist

sswdasb 发表于 2019-8-25 12:09:38

#include <stdio.h>
#include <math.h>

void main()
{
      double x, s;

          printf("input number:\n");
          scanf("%lf", &x);
          s = sin(x);
          printf("sin of %lf is %lf\n", x, s);
}

cplus 发表于 2019-8-25 20:00:42

建议使用 VS2013 及以上的版本

鱿小小鱼 发表于 2019-8-26 21:18:28

你之前运行过了一次,需要把你之前的停止才行,任务管理器停止或者重启软件
页: [1]
查看完整版本: Visual C++6.0无法运行