首页 新闻 会员 周边
1
回答数

已解决问题 15 c语言链表的插入

include<stdio.h> include<stdlib.h> struct Node { int value; struct Insert *next; }; void InsertNode(
1
回答数

已解决问题 10 python列表

Python怎么删除列表中第奇数位置的元素,一次性删除的
1
回答数

已解决问题 15 冒泡排序问题

include<stdio.h> int main() { int i,j,t,a[10]; printf("输入十个数字\n"); for(i=0;i<10;i++) { scanf("%d",&a
1
回答数

已解决问题 50 Python题目

编程输出3到100 内的所有素数。输出时每行输出5个数,每个数占据5列宽。