rt 这段代码预期输出 6 6 ,实际输出 6 0.000000
6 6
6 0.000000
#include <cstdio> int n = 6; int main(){ printf("%d %lf",n,(double)n); return 0; }