问题标题:
【C++下列哪些语句是非法的?为什么(a)"WhogoeswithF144rgus?14"(b)3.14e1L(c)"two"L"some"(d)1024f(e)3.14UL(f)"multiplelineComment"】
问题描述:
C++下列哪些语句是非法的?为什么
(a)"WhogoeswithF144rgus?14"
(b)3.14e1L
(c)"two"L"some"
(d)1024f
(e)3.14UL
(f)"multipleline
Comment"
么钢回答:
(a)会警告后面的空格(b)错误3.14e1L空格去掉(c)错误"two"L"some"L去掉(d)错误1024不能用来修饰整数,只能用来修饰小数(e)错误3.14(f)错误"multiplelineComment"...
查看更多