【判断题】会计方法通常包括核算方法和监督方法,其中会计核算方法是会计方法中最基本的方法。( )
【单选题】一般将玻璃熔制分为五个阶段,即硅酸盐形成、玻璃形成、 、 和冷却
【简答题】下面程序的输出结果是 static int a=5; void fun1(void) { printf(“a*a=%d\n”,a*a); a=2; } void fun2(void) { printf(“a*a*a=%d\n”,a*a*a); } main() { printf(“a=%d\n”,a); fun1(); fun2(); }
【简答题】下面程序的输出结果是 static void Main(string[]args) { int i = 0, y = 18, j; int[] a = new int[5]; do { a[i] = y % 2; i++; y = y/ 2; } while (y >= 1); for (j = a.Length - 1; j >= 0; j--) { Console.Write("{0}", a...
【单选题】下面程序的输出结果是static void Main(string[] args) { int a = 5, b = 2; bool c; c = (a ==5) && (b != 2); Console.WriteLine("{0}", c); Console.ReadLine(); ...
【单选题】Lozanov claims that teachers should train students to
A.
memorize details of the curriculum.
B.
develop their own sets of indirect instructions.
C.
think about something other than the curriculum content.
D.
avoid overloading the capacity of the brain.
【简答题】下面程序的输出结果是【 】。 include main() { static char a[]=' language' ,b[]=' program'; char *ptr1=a, *ptr2=b; int k; for(k=0;k<7;k++) if(*(ptr1+k)==*(ptr2+k)) printf(' %c',*(ptr1+k)); }
【单选题】下面程序的输出结果是static void Main(string[] args){ int a=5,b =2; float x=4.5f, y=3.0f, u; u=a/3+b*x/y+1/2; Console .WriteLine ("{0}",u); Console.ReadKey(); }
【简答题】下面程序的输出结果是【 】。 include<stdio.h> main() { static char a[]='language' ,b[]='program'; char*ptrl=a,*ptr2=b; int k; for(k=0;k<7;k++) if(*(ptrl+k)==*(ptr2+k)) printf('%c',*(ptrl+k));}