#include <iostream> using namespace std; int main() { float a; a = 88.8; cout << "浮点型变量a的值是" << a << endl; return 0; }