第31605题 单选题
以下关于C++变量的定义和使用,符合规范的是哪一项?

本题考查C++变量的命名规则、关键字使用限制及初始化相关的基础使用规范

A

int 123abc = 10;

B

int float = 3.14;

C

int student_age = 18; std::cout << student_age;

D

int score; std::cout << score;

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析