只要懂得绞车的性能、工作原理、操作技术,便可操作该绞车。
参考答案:错
[说明] 下面Application程序用while循环从键盘读入字符,记录输入的字符数并输出读入的字符,当输入字符“0”时结束while循环,同时结束程序。 [Java程序] import java.io.*; public class ContinuateInput public (1) void main(String[] args) (2) IOException int ch; int counter=0; System.out .println("请输入字符(输入0结束)"); while ((char) (ch=System.in. (3) ) != ’0’) counter++; System.out .println (( (4) )ch) ; System.out .println () ; System.out.println ("counted "+counter+" total bytes. ") ; System.out . (5) ;
void LE(int*a,int b ) int x=*a: printf("%d\t%d\n",*a,b ); *a=b;b=x; main() int x=10,y=25; LE(&x,y); printf("%d\t%d\n",x,y);