使用编译此代码g++ -std=c++17 -Wall -pedantic main.cpp
不会产生任何警告:
#include <iostream>
#include <stdlib.h>
int main(int argc, char const *argv[]) {
for (int i = 0; i < 100; ++i) {
float x = 300.0 + rand();
char c = x;
std::cout << c << std::endl;
}
return 0;
}
它不应该产生缩小误差吗?