【发布时间】:2016-01-26 07:10:01
【问题描述】:
我想使用大数字是我的数据,所以我尝试了这个。
#include<iostream.h>
#include<conio.h>
struct DataType{
unsigned long long int i,j;
}a;
int main(){
a.i=1;a.j=1;
while(a.j>0){
a.i=a.j;
a.j++;
}
cout << a.i;
return 0;
}
注意:编译器:Borland 5.02
【问题讨论】:
标签: c++ numbers borland-c++