Menu
Forum
General Car Audio
Subwoofers
Speakers
Amplifiers
Head Units
Car Audio Build Logs
Wiring, Electrical and Installation
Enclosure Design & Construction
Car Audio Classifieds
Home Audio
Off-topic Discussion
The Lounge
What's new
Search forums
Gallery
New media
New comments
Search media
Members
Registered members
Current visitors
Classifieds Member Feedback
SHOP
Shop Head Units
Shop Amplifiers
Shop Speakers
Shop Subwoofers
Shop eBay Car Audio
Log in / Register
Forum
Search
Search titles and first posts only
Search titles only
Search titles and first posts only
Search titles only
Log in / Join
What’s new
Search
Search titles and first posts only
Search titles only
Search titles and first posts only
Search titles only
General Car Audio
Subwoofers
Speakers
Amplifiers
Head Units
Car Audio Build Logs
Wiring, Electrical and Installation
Enclosure Design & Construction
Car Audio Classifieds
Home Audio
Off-topic Discussion
The Lounge
What's new
Search forums
Menu
Reply to thread
Forum
Off-topic Discussion
The Lounge
I need help with C++
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="MegaloJntariac" data-source="post: 6420146" data-attributes="member: 586438"><p>Okay I tried doing this but I ended up with unidentified errors:</p><p></p><p>[CODE]</p><p>#include &lt;iostream&gt;</p><p>#include &lt;iomanip&gt;</p><p>#include &lt;cmath&gt;</p><p>using namespace std;</p><p></p><p>double fee(double&amp; a); </p><p>int change(double, int&amp;, int&amp;, int&amp;, int&amp;, int&amp;, int&amp;);</p><p>int change(double, int&amp;, int&amp;, int&amp;, int&amp;); </p><p>void display(int&amp; ,int&amp; ,int&amp;,int&amp;, int&amp;, int&amp;, int&amp;, int&amp;, int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;,int&amp;);</p><p></p><p></p><p></p><p></p><p></p><p></p><p>bool validFee(double a)</p><p>{</p><p>return (a &lt;= 1000);</p><p>} // end Bool</p><p>void main()</p><p>{</p><p>int quar=0, dime=0, nick=0, penn=0, hunds = 0, fifts= 0, twents = 0, tens = 0, fives = 0, ones = 0;</p><p>double a; //price of check &lt; $1000.01</p><p></p><p>do</p><p>{</p><p>cout&lt;&lt;"Enter Check Amount: ";</p><p>cin&gt;&gt;a;</p><p>}</p><p>while (! validFee(a));</p><p></p><p>cout&lt;&lt;"Check Amount: "&lt;&lt;a&lt;&lt;setprecision(2)&lt;&lt;endl;</p><p></p><p></p><p>fee(a);</p><p></p><p>change(a, hunds, fifts, twents, tens, fives, ones);</p><p>change(a, quar, dime, nick, penn);</p><p>display(q,d,n,p, quar, dime, nick, penn, hunds,fifts,twents,tens,fives,ones,h,f,tw,te,fi,o);</p><p></p><p></p><p></p><p></p><p></p><p>}//endmain</p><p></p><p>double fee(double&amp; a)</p><p>{</p><p></p><p></p><p>if (a&gt;=0 &amp;&amp; a&lt;=100)</p><p>{</p><p> a = a - 5;</p><p> cout&lt;&lt;" Cashing Fee : $5.00"&lt;&lt;endl;</p><p> return a;</p><p>} // ends if</p><p>else if (a&gt;100 &amp;&amp; a&lt;=500)</p><p>{</p><p> a = a - 15;</p><p> cout&lt;&lt;" Cashing Fee :$15.00"&lt;&lt;endl;</p><p> return a;</p><p>} // ends if</p><p></p><p>else </p><p>{</p><p> a = a - 25;</p><p> cout&lt;&lt;" Cashing Fee :$25.00"&lt;&lt;endl;</p><p> return a;</p><p>} // ends if</p><p></p><p></p><p></p><p>}//end fee</p><p></p><p></p><p>int change(double a,int&amp; h,int&amp; f,int&amp; tw,int&amp; te,int&amp; fi,int&amp; o)</p><p>{</p><p>int c = static_cast&lt;int&gt;(a);</p><p>int hunds, fifts, twents, tens, fives, ones;</p><p></p><p>h=c/100;</p><p>c%=100;</p><p>f=c/50;</p><p>c%=50;</p><p>tw=c/25;</p><p>c%=25;</p><p>te=c/10;</p><p>c%=10;</p><p>fi=c/5;</p><p>c%=5;</p><p>o=c/1;</p><p></p><p>hunds = (h) * 100;</p><p>fifts = (f) * 50;</p><p>twents = (tw) * 20;</p><p>tens = (te) * 10;</p><p>fives = (fi) * 5;</p><p>ones = (o) * 1;</p><p></p><p>return (hunds,fifts,twents,tens,fives,ones,h,f,tw,te,fi,o);</p><p></p><p></p><p></p><p>} // end change bills </p><p>int change(double a,int&amp; q,int&amp; d,int&amp; n,int&amp; p)</p><p>{ double chg = 1.00 - a;</p><p>int quar, dime, nick, penn;</p><p></p><p>int c = static_cast&lt;int&gt; (chg*100);</p><p></p><p>q=c/25;</p><p>c%=25;</p><p>d=c/10;</p><p>c%=10;</p><p>n=c/5;</p><p>p=c%5;</p><p></p><p>quar = (q) * 25;</p><p>dime = (d) * 10;</p><p>nick = (n) * 05;</p><p>penn = (p) * 01;</p><p></p><p>return( q,d,n,p, quar, dime, nick, penn);</p><p></p><p></p><p></p><p>} // end change coins</p><p></p><p>void display(int&amp; q,d,n,p, quar, dime, nick, penn, hunds,fifts,twents,tens,fives,ones,h,f,tw,te,fi,o)</p><p>{</p><p></p><p></p><p>cout&lt;&lt;"Denominations Dispensed:"&lt;&lt;setw(15)&lt;&lt;endl;</p><p>cout&lt;&lt;"------------------------"&lt;&lt;setw(15)&lt;&lt;endl;</p><p>cout&lt;&lt;" # Amount"&lt;&lt;setw(15)&lt;&lt;endl;</p><p>cout&lt;&lt;" ------ -------- "&lt;&lt;setw(10)&lt;&lt;endl;</p><p>if(h&gt;0)</p><p> cout&lt;&lt;"Hundreds: "&lt;&lt;setw(15)&lt;&lt;h&lt;&lt;setw(10)&lt;&lt;hunds&lt;&lt;endl;</p><p>if(f&gt;0)</p><p> cout&lt;&lt;"Fifties: "&lt;&lt;setw(15)&lt;&lt;f&lt;&lt;setw(10)&lt;&lt;fifts&lt;&lt;endl;</p><p>if(tw&gt;0)</p><p> cout&lt;&lt;"Twenties: "&lt;&lt;setw(15)&lt;&lt;tw&lt;&lt;setw(10)&lt;&lt;twents&lt;&lt;endl;</p><p>if(te&gt;0)</p><p> cout&lt;&lt;"Tens: "&lt;&lt;setw(15)&lt;&lt;te&lt;&lt;setw(10)&lt;&lt;tens&lt;&lt;endl;</p><p>if(fi&gt;0)</p><p> cout&lt;&lt;"Fives: "&lt;&lt;setw(15)&lt;&lt;fi&lt;&lt;setw(10)&lt;&lt;fives&lt;&lt;endl;</p><p>if(o&gt;0)</p><p> cout&lt;&lt;"Ones: "&lt;&lt;setw(15)&lt;&lt;o&lt;&lt;setw(10)&lt;&lt;ones&lt;&lt;endl;</p><p></p><p>if(q&gt;0)</p><p> cout&lt;&lt;"Quarters: "&lt;&lt;setw(15)&lt;&lt;q&lt;&lt;setw(10)&lt;&lt;quar&lt;&lt;endl;</p><p>if(d&gt;0)</p><p> cout&lt;&lt;"Dimes: "&lt;&lt;setw(15)&lt;&lt;d&lt;&lt;setw(10)&lt;&lt;dime&lt;&lt;endl;</p><p>if(n&gt;0)</p><p> cout&lt;&lt;"Nickels: "&lt;&lt;setw(15)&lt;&lt;n&lt;&lt;setw(10)&lt;&lt;nick&lt;&lt;endl;</p><p>if(p&gt;0)</p><p> cout&lt;&lt;"Pennies: "&lt;&lt;setw(15)&lt;&lt;p&lt;&lt;setw(10)&lt;&lt;penn&lt;&lt;endl;</p><p></p><p>}</p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p>[/CODE]</p><p>[CODE]</p><p>Compiling...</p><p>Program_6.cpp</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'q' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'd' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'n' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'p' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'h' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'f' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'tw' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'te' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'fi' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'o' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(130) : error C2061: syntax error : identifier 'd'</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(138) : error C2065: 'h' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(139) : error C2065: 'h' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(139) : error C2065: 'hunds' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(140) : error C2065: 'f' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(141) : error C2065: 'f' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(141) : error C2065: 'fifts' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(142) : error C2065: 'tw' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(143) : error C2065: 'tw' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(143) : error C2065: 'twents' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(144) : error C2065: 'te' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(145) : error C2065: 'te' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(145) : error C2065: 'tens' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(146) : error C2065: 'fi' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(147) : error C2065: 'fi' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(147) : error C2065: 'fives' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(148) : error C2065: 'o' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(149) : error C2065: 'o' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(149) : error C2065: 'ones' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(152) : error C2065: 'quar' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(153) : error C2065: 'd' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(154) : error C2065: 'd' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(154) : error C2065: 'dime' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(155) : error C2065: 'n' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(156) : error C2065: 'n' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(156) : error C2065: 'nick' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(157) : error C2065: 'p' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(158) : error C2065: 'p' : undeclared identifier</p><p>c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(158) : error C2065: 'penn' : undeclared identifier</p><p>Build log was saved at "file://c:\Documents and Settings\Macbook\My Documents\Program_6\Program_6\Program_6\Debug\BuildLog.htm"</p><p>Program_6 - 39 error(s), 0 warning(s)</p><p>========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========[/CODE]</p><p>I cant figure out how to declare that. my logic is off. and I dont know where</p></blockquote><p></p>
[QUOTE="MegaloJntariac, post: 6420146, member: 586438"] Okay I tried doing this but I ended up with unidentified errors: [CODE] #include <iostream> #include <iomanip> #include <cmath> using namespace std; double fee(double& a); int change(double, int&, int&, int&, int&, int&, int&); int change(double, int&, int&, int&, int&); void display(int& ,int& ,int&,int&, int&, int&, int&, int&, int&,int&,int&,int&,int&,int&,int&,int&,int&,int&,int&,int&); bool validFee(double a) { return (a <= 1000); } // end Bool void main() { int quar=0, dime=0, nick=0, penn=0, hunds = 0, fifts= 0, twents = 0, tens = 0, fives = 0, ones = 0; double a; //price of check < $1000.01 do { cout<<"Enter Check Amount: "; cin>>a; } while (! validFee(a)); cout<<"Check Amount: "<<a<<setprecision(2)<<endl; fee(a); change(a, hunds, fifts, twents, tens, fives, ones); change(a, quar, dime, nick, penn); display(q,d,n,p, quar, dime, nick, penn, hunds,fifts,twents,tens,fives,ones,h,f,tw,te,fi,o); }//endmain double fee(double& a) { if (a>=0 && a<=100) { a = a - 5; cout<<" Cashing Fee : $5.00"<<endl; return a; } // ends if else if (a>100 && a<=500) { a = a - 15; cout<<" Cashing Fee :$15.00"<<endl; return a; } // ends if else { a = a - 25; cout<<" Cashing Fee :$25.00"<<endl; return a; } // ends if }//end fee int change(double a,int& h,int& f,int& tw,int& te,int& fi,int& o) { int c = static_cast<int>(a); int hunds, fifts, twents, tens, fives, ones; h=c/100; c%=100; f=c/50; c%=50; tw=c/25; c%=25; te=c/10; c%=10; fi=c/5; c%=5; o=c/1; hunds = (h) * 100; fifts = (f) * 50; twents = (tw) * 20; tens = (te) * 10; fives = (fi) * 5; ones = (o) * 1; return (hunds,fifts,twents,tens,fives,ones,h,f,tw,te,fi,o); } // end change bills int change(double a,int& q,int& d,int& n,int& p) { double chg = 1.00 - a; int quar, dime, nick, penn; int c = static_cast<int> (chg*100); q=c/25; c%=25; d=c/10; c%=10; n=c/5; p=c%5; quar = (q) * 25; dime = (d) * 10; nick = (n) * 05; penn = (p) * 01; return( q,d,n,p, quar, dime, nick, penn); } // end change coins void display(int& q,d,n,p, quar, dime, nick, penn, hunds,fifts,twents,tens,fives,ones,h,f,tw,te,fi,o) { cout<<"Denominations Dispensed:"<<setw(15)<<endl; cout<<"------------------------"<<setw(15)<<endl; cout<<" # Amount"<<setw(15)<<endl; cout<<" ------ -------- "<<setw(10)<<endl; if(h>0) cout<<"Hundreds: "<<setw(15)<<h<<setw(10)<<hunds<<endl; if(f>0) cout<<"Fifties: "<<setw(15)<<f<<setw(10)<<fifts<<endl; if(tw>0) cout<<"Twenties: "<<setw(15)<<tw<<setw(10)<<twents<<endl; if(te>0) cout<<"Tens: "<<setw(15)<<te<<setw(10)<<tens<<endl; if(fi>0) cout<<"Fives: "<<setw(15)<<fi<<setw(10)<<fives<<endl; if(o>0) cout<<"Ones: "<<setw(15)<<o<<setw(10)<<ones<<endl; if(q>0) cout<<"Quarters: "<<setw(15)<<q<<setw(10)<<quar<<endl; if(d>0) cout<<"Dimes: "<<setw(15)<<d<<setw(10)<<dime<<endl; if(n>0) cout<<"Nickels: "<<setw(15)<<n<<setw(10)<<nick<<endl; if(p>0) cout<<"Pennies: "<<setw(15)<<p<<setw(10)<<penn<<endl; } [/CODE] [CODE] Compiling... Program_6.cpp c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'q' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'd' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'n' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'p' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'h' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'f' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'tw' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'te' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'fi' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(40) : error C2065: 'o' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(130) : error C2061: syntax error : identifier 'd' c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(138) : error C2065: 'h' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(139) : error C2065: 'h' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(139) : error C2065: 'hunds' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(140) : error C2065: 'f' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(141) : error C2065: 'f' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(141) : error C2065: 'fifts' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(142) : error C2065: 'tw' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(143) : error C2065: 'tw' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(143) : error C2065: 'twents' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(144) : error C2065: 'te' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(145) : error C2065: 'te' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(145) : error C2065: 'tens' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(146) : error C2065: 'fi' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(147) : error C2065: 'fi' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(147) : error C2065: 'fives' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(148) : error C2065: 'o' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(149) : error C2065: 'o' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(149) : error C2065: 'ones' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(152) : error C2065: 'quar' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(153) : error C2065: 'd' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(154) : error C2065: 'd' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(154) : error C2065: 'dime' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(155) : error C2065: 'n' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(156) : error C2065: 'n' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(156) : error C2065: 'nick' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(157) : error C2065: 'p' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(158) : error C2065: 'p' : undeclared identifier c:\documents and settings\macbook\my documents\program_6\program_6\program_6\program_6.cpp(158) : error C2065: 'penn' : undeclared identifier Build log was saved at "file://c:\Documents and Settings\Macbook\My Documents\Program_6\Program_6\Program_6\Debug\BuildLog.htm" Program_6 - 39 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========[/CODE] I cant figure out how to declare that. my logic is off. and I dont know where [/QUOTE]
Insert quotes…
Verification
Post reply
Forum
Off-topic Discussion
The Lounge
I need help with C++
Top
Menu
What's new
Forum list