(C++) fixed??
- 
					
					
					
					
 also ich hab hier u.a. das: cout << "\n\t" << setw(8) << n << setw(16) << a << fixed << setprecision(2) << setw(16) << p << endl;aber irgendwie hat dev c++ was gegen das fixed  : :
 In functionint main()': 36:fixed' undeclared (first use this function)
 36: (Each undeclared identifier is reported only once
 36: for each function it appears in.)
    
 is an dem fixed was falsch? (steht so ähnlich in meinem schlauen buch drin :D)
 
- 
					
					
					
					
 hab das jetz einfach weggelassen  
 naja, wenn der compiler net will... :p 
 
- 
					
					
					
					
 versuch mal sowas http://www.cplusplus.com/ref/iostream/ios_base/_fixed_scientific.html das geht .. // modify floatfield using manipulators #include <iostream> using namespace std; int main () { float f; f=365.25; cout << fixed << f << endl; cout << scientific << f << endl; return 0; }
 
- 
					
					
					
					
 Sieht mir nach Std-C++ aus. Ich verschiebs mal. MfG SideWinder 
 
