Changeset 6128 in orxonox.OLD for branches/network/src/subprojects
- Timestamp:
- Dec 16, 2005, 1:07:54 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/subprojects/network/network_unit_test.cc
r6108 r6128 299 299 300 300 301 //float a = 5.4f; 302 //float b = 2.0f; 303 //printf("%f mod %f = %f", a, b, a % b); 304 305 printf("\n"); 306 307 float y; 308 char* s; 309 310 y = 12.0f; 311 s = Converter::floatToBinString(y); 312 printf("%f = ", y); 313 printf(s); printf("\n"); 314 315 y = 24549026.0f; 316 s = Converter::floatToBinString(y); 317 printf("%f = ", y); 318 printf(s); printf("\n"); 319 320 y = 12.4e20f; 321 s = Converter::floatToBinString(y); 322 printf("%f = ", y); 323 printf(s); printf("\n"); 324 325 y = 4.7824f; 326 s = Converter::floatToBinString(y); 327 printf("%f = ", y); 328 printf(s); printf("\n"); 329 330 331 301 332 return 0; 302 333 }
Note: See TracChangeset
for help on using the changeset viewer.