
[单选题]若有定义:char c; int d; 程序运行时输入:c=1,d=2<回车>,能把字符1输入给变量c、整数2输入给变量d的输入语句是( )。A.s
[单选题]若有定义:char c; int d; 程序运行时输入:c=1,d=2<回车>,能把字符1输入给变量c、整数2输入给变量d的输入语句是( )。A.s
[单选题]若有定义:char c; int d; 程序运行时输入:c=1,d=2<回车>,能把字符1输入给变量c、整数2输入给变量d的输入语句是( )。A.s
[单选题]若有定义:char c; int d; 程序运行时输入:c=1,d=2<回车>,能把字符1输入给变量c、整数2输入给变量d的输入语句是( )。A.s
[单选题]若有定义:int a; float b; double c; ,程序运行时输入:1,2,3<回车>,能把1输入给变量a、2输入给变量b、3输入给变量c
[单选题]若有定义:int a; float b; double c; ,程序运行时输入:1,2,3<回车>,能把1输入给变量a、2输入给变量b、3输入给变量c
[单选题]若有定义:int a;float b;double c;,程序运行时输入:a=1,b=2,c=3<回车>,能把值1输入给变量a、值2输入给变量b、值3
[单选题]若有定义:char s[30] = {0};运行时输入:This is a string.<回车>则以下不能正确读入整个字符串:This is a s
[单选题]若有定义:char s[30] = {0};运行时输入:This is a string.<回车>则以下不能正确读入整个字符串:This is a s
[试题]下列程序运行时 , 若输入 labcedf2df< 回车 > 输出结果为( 1 0 )#include <stdio.h>main(){ char a=0,ch;while((ch=getch ar ())!='/n'){ if(a%2!=0&&(ch>='a'&&ch<='z')) ch=ch-'a'+'A';a++; putchar(ch);}printf("/n");}