首页 新闻 赞助 找找看
1
回答数

待解决问题 5 用链表来插入元素(C语言)

include <stdio.h> include <stdlib.h> struct node{//定义链表节点 int data; struct node next; }; int main()
1
回答数

已关闭问题 求大佬帮助python初学者

age =12 if age<65: price = 10 elif age>=65: price = 5 print("Your admission cost is $",+ str(price)