5326 |
第三题 按照要求,编写出可以画出各级别的科赫雪花的代码 【具体要求】 对胡萝卜画笔进行编程,不要对画笔的初 |
75 |
2024-07-16 |
5327 |
第二题 按照要求,绘制如图所示的图案: 共有6个五边形,每个五边形连着一条线段; 五边形与连接的线段颜色一致,但每 |
71 |
2024-07-16 |
5328 |
第一题【和为奇数】 奇数是指不能被2整除的整数。 给定个整数,两两相加和为奇数的两个数,我们称之为1项,请你找 |
71 |
2024-07-16 |
5329 |
【编程实现】数字卡片排序 【具体要求】 1)点击绿旗角色、背景如图所示 (随机显示5张不同数字的卡片,显示 |
69 |
2024-07-15 |
5330 |
找子串【背景信息】 子串为字符串的一段连续的部分。 例如:字符串为abbcd abbcd的子串有:a、ab、abb、abbc |
28 |
2024-07-15 |
5331 |
【编程实现】找出不同的字 【具体要求】 1)点击绿旗,角色、背景如图所 示,变量“倒计时”为5; 2)按下一次 |
73 |
2024-07-15 |
5332 |
【编程实现】摩天轮 【具体要求】 1)点击绿旗,背景如图所示; 2)1秒后,出现一个彩色线条的 圆,(圆心在图中 |
39 |
2024-07-15 |
5333 |
【编程实现】消失的小鸟 【具体要求】 1)点击绿旗,角色、背景如图所 示; 2)鼠标点击小鸟后,小鸟从舞台左 |
73 |
2024-07-15 |
5334 |
【编程实现】切换背景 【具体要求】 1)点击绿旗,角色、背 景如图所示; 2)每次用鼠标点击“上 一张”(〉 |
35 |
2024-07-15 |
5335 |
运行以下程序后,Scratch列表 “数据”的项目数和所有项的和分别为( )。 |
28 |
2024-07-15 |
5336 |
Scratch运行以下程序后绘制的图形是( )。 |
70 |
2024-07-15 |
5337 |
以下运算结果为“False”的是( )。 |
98 |
2024-07-15 |
5338 |
Scratch运行以下程序后, 能看到几只河豚鱼( )? |
99 |
2024-07-15 |
5339 |
Scratch运行以下哪个程序后,巨嘴鸟会向下移动?( ) |
30 |
2024-07-15 |
5340 |
#include <stdio.h> struct abc {int a,b, c; }; main() {struct abc s[2]={{1,2,3 |
31 |
2024-07-14 |
5341 |
#include<stdio.h> struct cmplx { int x; int y; } cnum[2]={1, 3, 2,7}; mai |
29 |
2024-07-14 |
5342 |
#include<stdio.h> main( ) {struct stu {int num; char a[5]; float score; }m={1234,” |
55 |
2024-07-14 |
5343 |
#include<stdio.h> struct st { int x; int y; } a[2]={5, 7, 2, 9} ; main() { pr |
70 |
2024-07-14 |
5344 |
#include <stdio.h> char s[]=”ABCD”; main() { char *p; for(p=s;p<s+4;p++) printf(“%c |
68 |
2024-07-14 |
5345 |
#include<stdio.h> main( ) { static char a[ ]=”Program”, *ptr; for(ptr=a, ptr<a+7; pt |
64 |
2024-07-14 |
5346 |
#include <stdio.h> main( ) { int a[ ]={1, 2, 3, 4, 5, 6}; int x, y, *p; p |
100 |
2024-07-14 |
5347 |
#include<stdio.h> main() { int arr[ ]={30,25,20,15,10,5}, *p=arr; p++; printf(“%d\n”, |
79 |
2024-07-14 |
5348 |
#include<stdio.h> main ( ) { int a[]={1, 2, 3, 4, 5} ; int x, y, *p; p=a; x |
97 |
2024-07-14 |
5349 |
#include <stdio.h> main( ) { char s[]=”abcdefg”; char *p; p=s; printf(“ch=%c\n”, |
30 |
2024-07-14 |
5350 |
# include < stdio .h > main ( ) { int x[ ] = {10, 20, 30, 40, 50 }; int *p |
64 |
2024-07-14 |