Search found 8 matches
- Fri Oct 01, 2004 3:06 am
- Forum: Volume 4 (400-499)
- Topic: 495 - Fibonacci Freeze
- Replies: 222
- Views: 36895
- Fri Oct 01, 2004 1:15 am
- Forum: Volume 4 (400-499)
- Topic: 495 - Fibonacci Freeze
- Replies: 222
- Views: 36895
495 : implicit declaration of function `int itoa(...)'
I can't seem to get past this: 02919915_24.c: In function `class string addStrings(basic_string<char,string_char_traits<char>,__default_alloc_template<true,0> >, basic_string<char,string_char_traits<char>,__default_alloc_template<true,0> >)': 02919915_24.c:97: implicit declaration of function `int i...
- Thu Jun 24, 2004 1:55 am
- Forum: Volume 100 (10000-10099)
- Topic: 10038 - Jolly Jumpers
- Replies: 445
- Views: 96867
10038 - WA Need Help
I keep getting WA with the following (or variations of the same): [c++] #include <iostream> using namespace std; const int MAX = 3001; struct RangeToTest { int range; int array[MAX]; bool checkJolly() { int temp[MAX]; for(int i=0; i<range-1; ++i) { if(array < array[i+1]) { temp = array[i+1] - array ...
- Wed Jun 23, 2004 7:07 am
- Forum: Volume 101 (10100-10199)
- Topic: 10195 - The Knights Of The Round Table
- Replies: 59
- Views: 17315
- Wed Jun 23, 2004 4:45 am
- Forum: Volume 101 (10100-10199)
- Topic: 10195 - The Knights Of The Round Table
- Replies: 59
- Views: 17315
10195 - Must be something really obvious
What am I missing here?: [C++] #include <iostream> #include <math.h> #include <iomanip> using namespace std; int main() { double a,b,c, radius, peri; while(cin >> a >> b >> c) { if(a>0 && a<=1000000 && b >0 && b<=1000000 && c>0 &&c<=1000000) { peri = (a + b + ...
- Fri Jun 18, 2004 8:52 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10189 - Minesweeper
- Replies: 418
- Views: 80933
- Thu Jun 17, 2004 10:05 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10189 - Minesweeper
- Replies: 418
- Views: 80933
- Thu Jun 17, 2004 5:56 am
- Forum: Volume 101 (10100-10199)
- Topic: 10189 - Minesweeper
- Replies: 418
- Views: 80933
10189 - WA Can't Seem To Find What's Wrong ...
Would anyone like to have a quick look? I've exhausted all possibilities that I could think up. [C++] /*BEGIN CODE*/ #include <iostream> #include <vector> using namespace std; //number of rows in the field array const int ROW = 110; //number of columns in the field array const int COL = 110; //incre...