LEESP 发表于 2020-8-14 18:13:07

求Int型最大数值怎么出来的错误的?

#include<stdio.h>
void main()

{
        int a=2 ;
        int b=32;
        int c=2^32-1;
        printf("%d\n",c);
}

zltzlt 发表于 2020-8-14 18:16:54

求次方不是这样的,需要用到 math.h 的 pow() 函数

#include <stdio.h>
#include <math.h>
void main()
{
    int a = 2;
    int b = 32;
    int c = int(double(pow(2, 32)) - 1.);
    printf("%d\n", c);
}

LEESP 发表于 2020-8-14 18:37:49

zltzlt 发表于 2020-8-14 18:16
求次方不是这样的,需要用到 math.h 的 pow() 函数

E:\study c\zuoye\zuoye.c(13) : error C2059: syntax error : 'type'

LEESP 发表于 2020-8-14 18:38:25

zltzlt 发表于 2020-8-14 18:16
求次方不是这样的,需要用到 math.h 的 pow() 函数

说是第7行有错误

zltzlt 发表于 2020-8-14 18:38:37

LEESP 发表于 2020-8-14 18:37
E:\study c\zuoye\zuoye.c(13) : error C2059: syntax error : 'type'

我这没有报错哦,这样试试:

#include <stdio.h>
#include <math.h>
void main()
{
    int a = 2;
    int b = 32;
    int c = int(double(pow(2, 32)) - 1.0);
    printf("%d\n", c);
}

LEESP 发表于 2020-8-14 18:41:37

zltzlt 发表于 2020-8-14 18:38
我这没有报错哦,这样试试:

--------------------Configuration: zuoye - Win32 Debug--------------------
Compiling...
zuoye.c
E:\study c\zuoye\zuoye.c(7) : error C2059: syntax error : 'type'
执行 cl.exe 时出错.

zuoye.obj - 1 error(s), 0 warning(s)

LEESP 发表于 2020-8-14 18:42:09

LEESP 发表于 2020-8-14 18:41
--------------------Configuration: zuoye - Win32 Debug--------------------
Compiling...
zuoye.c
...

是不是因为我电脑是64位操作系统的原因啊

zltzlt 发表于 2020-8-14 18:42:33

LEESP 发表于 2020-8-14 18:42
是不是因为我电脑是64位操作系统的原因啊

应该不是,我这也是 64 位系统的,但没问题

永恒的蓝色梦想 发表于 2020-8-14 18:43:15

本帖最后由 永恒的蓝色梦想 于 2020-8-14 18:46 编辑

LEESP 发表于 2020-8-14 18:41
--------------------Configuration: zuoye - Win32 Debug--------------------
Compiling...
zuoye.c
...

这么写:#include <stdio.h>


int main() {
    int a = 2;
    int b = 32;
    int c = (1LL << 31) - 1;
    printf("%d\n", c);
}

LEESP 发表于 2020-8-14 18:45:49

zltzlt 发表于 2020-8-14 18:42
应该不是,我这也是 64 位系统的,但没问题

我重启新建了一个项目,还是不行,我用的是Visual C++ 6.0

--------------------Configuration: int - Win32 Debug--------------------
Compiling...
int.c
e:\study c\int\int.c(7) : error C2059: syntax error : 'type'
执行 cl.exe 时出错.

int.obj - 1 error(s), 0 warning(s)

永恒的蓝色梦想 发表于 2020-8-14 18:47:27

LEESP 发表于 2020-8-14 18:45
我重启新建了一个项目,还是不行,我用的是Visual C++ 6.0

--------------------Configuration: int - ...

不要用 Visual C++ 6.0 了,用 Visual Studio,来这里下载:
https://fishc.com.cn/thread-175256-1-1.html

LEESP 发表于 2020-8-14 18:48:08

永恒的蓝色梦想 发表于 2020-8-14 18:43
这么写:

--------------------Configuration: int - Win32 Debug--------------------
Compiling...
int.c
E:\study c\int\int.c(7) : error C2059: syntax error : 'bad suffix on number'
E:\study c\int\int.c(7) : error C2146: syntax error : missing ')' before identifier 'L'
E:\study c\int\int.c(7) : error C2059: syntax error : ')'
执行 cl.exe 时出错.

int.obj - 1 error(s), 0 warning(s)

永恒的蓝色梦想 发表于 2020-8-14 18:49:11

LEESP 发表于 2020-8-14 18:48
--------------------Configuration: int - Win32 Debug--------------------
Compiling...
int.c


你再试试#include <stdio.h>


int main() {
    int a, b, c;

    a = 2;
    b = 32;
    c = (((long long)1) << 31) - 1;

    printf("%d\n", c);
    return 0;
}

LEESP 发表于 2020-8-14 18:50:58

永恒的蓝色梦想 发表于 2020-8-14 18:49
你再试试

E:\study c\int\int.c(9) : error C2632: 'long' followed by 'long' is illegal
E:\study c\int\int.c(9) : warning C4307: '-' : integral constant overflow

我准备用VS了,不用VC

永恒的蓝色梦想 发表于 2020-8-14 18:51:47

LEESP 发表于 2020-8-14 18:50
E:\study c\int\int.c(9) : error C2632: 'long' followed by 'long' is illegal
E:\study c\int\int.c( ...

用 VS 吧,VC 太老了,处处都是问题。

永恒的蓝色梦想 发表于 2020-8-14 18:52:01

@zltzlt 分类

zltzlt 发表于 2020-8-14 18:57:24

永恒的蓝色梦想 发表于 2020-8-14 18:52
@zltzlt 分类

这已经是问题求助类型了

LEESP 发表于 2020-8-15 18:07:00

永恒的蓝色梦想 发表于 2020-8-14 18:47
不要用 Visual C++ 6.0 了,用 Visual Studio,来这里下载:
https://fishc.com.cn/thread-175256-1-1.h ...

Visual Studio,Visual Studio code ,Visual Studio for MAC,我下载哪一个?、

永恒的蓝色梦想 发表于 2020-8-15 18:17:38

LEESP 发表于 2020-8-15 18:07
Visual Studio,Visual Studio code ,Visual Studio for MAC,我下载哪一个?、

如果 Windows,选第一个。
如果 MAC,选最后一个。

LEESP 发表于 2020-8-15 18:38:28

永恒的蓝色梦想 发表于 2020-8-15 18:17
如果 Windows,选第一个。
如果 MAC,选最后一个。

你主页里面那个地址址,下载安装器很慢。我网盘下载安装一个2010的可以安装吗?
页: [1] 2
查看完整版本: 求Int型最大数值怎么出来的错误的?