4826 |
运行以下程序后,Scratch列表 “数据”的项目数和所有项的和分别为( )。 |
28 |
2024-07-15 |
4827 |
Scratch运行以下程序后绘制的图形是( )。 |
70 |
2024-07-15 |
4828 |
以下运算结果为“False”的是( )。 |
98 |
2024-07-15 |
4829 |
Scratch运行以下程序后, 能看到几只河豚鱼( )? |
99 |
2024-07-15 |
4830 |
Scratch运行以下哪个程序后,巨嘴鸟会向下移动?( ) |
30 |
2024-07-15 |
4831 |
#include <stdio.h> struct abc {int a,b, c; }; main() {struct abc s[2]={{1,2,3 |
31 |
2024-07-14 |
4832 |
#include<stdio.h> struct cmplx { int x; int y; } cnum[2]={1, 3, 2,7}; mai |
29 |
2024-07-14 |
4833 |
#include<stdio.h> main( ) {struct stu {int num; char a[5]; float score; }m={1234,” |
55 |
2024-07-14 |
4834 |
#include<stdio.h> struct st { int x; int y; } a[2]={5, 7, 2, 9} ; main() { pr |
70 |
2024-07-14 |
4835 |
#include <stdio.h> char s[]=”ABCD”; main() { char *p; for(p=s;p<s+4;p++) printf(“%c |
68 |
2024-07-14 |
4836 |
#include<stdio.h> main( ) { static char a[ ]=”Program”, *ptr; for(ptr=a, ptr<a+7; pt |
64 |
2024-07-14 |
4837 |
#include <stdio.h> main( ) { int a[ ]={1, 2, 3, 4, 5, 6}; int x, y, *p; p |
100 |
2024-07-14 |
4838 |
#include<stdio.h> main() { int arr[ ]={30,25,20,15,10,5}, *p=arr; p++; printf(“%d\n”, |
79 |
2024-07-14 |
4839 |
#include<stdio.h> main ( ) { int a[]={1, 2, 3, 4, 5} ; int x, y, *p; p=a; x |
97 |
2024-07-14 |
4840 |
#include <stdio.h> main( ) { char s[]=”abcdefg”; char *p; p=s; printf(“ch=%c\n”, |
30 |
2024-07-14 |
4841 |
# include < stdio .h > main ( ) { int x[ ] = {10, 20, 30, 40, 50 }; int *p |
64 |
2024-07-14 |
4842 |
#include <stdio.h> int max(int x, int y); main() { int a,b,c; a=7;b=8; |
75 |
2024-07-14 |
4843 |
#include <stdio.h> unsigned fun6(unsigned num) { unsigned k=1; do { k*=num%10; num/= |
47 |
2024-07-14 |
4844 |
#include <stdio.h> int fac(int n) { int f=1,i; for(i=1;i<=n;i++) f=f * i; return(f) |
79 |
2024-07-14 |
4845 |
#include <stdio.h> nt fun(int a, int b) { if(a>b) return(a); else return(b); } ma |
78 |
2024-07-14 |
4846 |
#include <stdio.h> int m=4; int func(int x,int y) { int m=1; return(x*y-m); } mai |
79 |
2024-07-14 |
4847 |
#include<stdio.h> func(int x) { x=10; printf(“%d, ”,x); } main( ) { int x=20; |
95 |
2024-07-14 |
4848 |
#include <stdio.h> int min( int x, int y ) { int m; if ( x> y ) m = x; e |
67 |
2024-07-14 |
4849 |
#include <stdio.h> int Sub(int a, int b) {return (a- b);} main() {int x, y, |
32 |
2024-07-14 |
4850 |
#include"stdio.h" main() {int j,k; static int x[4][4],y[4][4]; for(j=0;j<4;j++) fo |
74 |
2024-07-11 |