
Search found 8 matches
- Tue Oct 08, 2002 2:06 pm
- Forum: Volume 5 (500-599)
- Topic: 566 - Adam's Genes
- Replies: 1
- Views: 2283
- Tue Oct 08, 2002 2:02 pm
- Forum: Volume 5 (500-599)
- Topic: 556 - Amazing
- Replies: 17
- Views: 8860
- Mon Oct 07, 2002 5:02 pm
- Forum: Volume 5 (500-599)
- Topic: 556 - Amazing
- Replies: 17
- Views: 8860
556 - Amazing
Please help, I don't know what's wrong with this code
Seems ok
[c]
#include <stdio.h>
#define MAXX 100
#define MAXY 100
int map[MAXX][MAXY];
int cnt[MAXX][MAXY];
int mx , my;
int ax , ay;
int cx , cy;
void get_data(int x , int y) {
int xx, yy;
char temp[100];
for (yy = 0 ; yy < y ; yy ...
Seems ok
[c]
#include <stdio.h>
#define MAXX 100
#define MAXY 100
int map[MAXX][MAXY];
int cnt[MAXX][MAXY];
int mx , my;
int ax , ay;
int cx , cy;
void get_data(int x , int y) {
int xx, yy;
char temp[100];
for (yy = 0 ; yy < y ; yy ...
- Sun Jun 16, 2002 5:49 pm
- Forum: C++
- Topic: C++ Skeleton
- Replies: 7
- Views: 4605
- Sat Jun 15, 2002 5:54 pm
- Forum: C++
- Topic: C++ Skeleton
- Replies: 7
- Views: 4605
C++ Skeleton
I usualy used this on BC 3.1 Windows
[cpp]
#include <iostream.h>
void main() {
int a;
cout << "Hello World!";
cin >> a;
}[/cpp]
But I try this at linux (because acm compile it at linux right?)
But it didn't work
Why?
Can some one give me the skeleton that I can used on linux
Thank you :D
[cpp]
#include <iostream.h>
void main() {
int a;
cout << "Hello World!";
cin >> a;
}[/cpp]
But I try this at linux (because acm compile it at linux right?)
But it didn't work
Why?
Can some one give me the skeleton that I can used on linux
Thank you :D
- Tue Jun 11, 2002 6:09 am
- Forum: C
- Topic: how to deal with huge integers ?
- Replies: 7
- Views: 5051
- Tue Jun 11, 2002 6:05 am
- Forum: Volume 1 (100-199)
- Topic: 113 - Power of Cryptography
- Replies: 163
- Views: 50258
- Mon Jun 10, 2002 5:21 pm
- Forum: Volume 1 (100-199)
- Topic: 113 - Power of Cryptography
- Replies: 163
- Views: 50258
113 - Power of Cryptography
Hi, I'm a newby here
Please help me on this case
I can easly make a function for search k for input :
2
16
3
27
But it goes to error when i got input like
7
4357186184021382204544
Any ideas how i can handle very2 large integer
(Without using float/ double) coz i've tried double
and have no used ...
Please help me on this case
I can easly make a function for search k for input :
2
16
3
27
But it goes to error when i got input like
7
4357186184021382204544
Any ideas how i can handle very2 large integer
(Without using float/ double) coz i've tried double
and have no used ...