有以下程序
main( )
int a=666 , b=888 ;
printf("%d/n",a,b);
程序运行后的输出结果是______。
A:错误信息 B:666 C:888 D:666,888
有如下程序:
#include<iostream>
using namespace std;
int main( )
cout.fill('*');
cout.width(6);
cout.fill('#');
cout<<888<<end1;
return 0;
的执行结果是( )。
A:###888 B:888### C:***888 D:888***
有以下程序
main( )
int a=666,b=888;
Printf("%d/n",a,b) ;
程序运行后的输出结果是
A:错误信息 B:666 C:888 D:666,888
有以下程序 main( ) { int a=666,b=888; Printf("%d/n",a,b) ; } 程序运行后的输出结果是
A:错误信息 B:666 C:888 D:666,888
有如下程序: #include<iostream> using namespace std; int main( ) { cout.fill('*'); cout.width(6); cout.fill('#'); cout<<888<<end1; return 0; } 的执行结果是( )。
A:###888 B:888### C:***888 D:888***
有以下程序 main( ) { int a=666,b=888; printf("%d/n",a,b); } 程序运行后的输出结果是()
A:错误信息 B:666 C:888 D:666,888