全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果150,226个

C++实现高校人员信息管理系统_C 语言_脚本之家

t.Input(); Policers[Policersop]=t; Policersop++; cout<<"添加成功!"<<endl; return 1; } int PolicerManager::Search() { system("cls"); int j,n; cout<<"请输入编号:";cin>>n; for(j=0;j<Policersop;j++) { if(n==Policers[j].num) break; } if(j==Policersop) cout<<"没有...
www.jb51.net/article/2151...htm 2024-11-29

java实现科学计算器的全过程与代码_java_脚本之家

case "t": result = 4; break; } return result; }3.判断错误下面是一些我能想到的一些输入错误和运算错误://当只有一位字符时,只能是“0123456789ep”中的一个//1.第一个字符只能为"losctg(0123456789ep"中的一个//2.“±/”后面只能是"0123456789losctg(ep"中的一个//3.".“后面只能是“0123456789...
www.jb51.net/article/2516...htm 2024-11-13

C语言实现餐饮管理与点餐系统_C 语言_脚本之家

if(t=='\n') num++; } rewind(fp); //将指针重置到第一行 for(i=0; i<num; i++) { fgets(c,max_str,fp); sscanf(c,"%s %d",list[i].name,&list[i].price); } fclose(fp); return num; }//功能模块2:实现点餐的结构体数组写入数据 ...
www.jb51.net/article/2047...htm 2024-12-5

Java实现数独小游戏_java_脚本之家

t=t-1;} if(row[x]==0) emptyrow=true; if(col[y]==0) emptycol=true; if(places[(y/3)*3+x/3]==0) emptyplaces=true; } } //获得最终游戏数独 for(int i=0;i<9;i++) for(int j=0;j<9;j++) game[i][j]=shudu[i][j]; } //获得最终游戏数独 public int[][] getArr()...
www.jb51.net/article/2131...htm 2021-5-25

C语言代码实现学生成绩管理系统_C 语言_脚本之家

t = stu[j]; stu[j] = stu[j+1]; stu[j+1] = t; } } for(i = 0; i <n; i ++) { m++; if(stu[i].no==w) { printf("学号为:%d\n",stu[i].no); printf("姓名为:%s\n",stu[i].name); printf("成绩为:%d\n",stu[i].all); printf("排名为:%d\n",m); break; }...
www.jb51.net/article/2503...htm 2024-11-27

Java基础之容器Vector详解_java_脚本之家

// 则新建一个T[]数组,数组大小是“Vector的元素个数”,并将“Vector”全部拷贝到新数组中 if (a.length < elementCount) return (T[]) Arrays.copyOf(elementData, elementCount, a.getClass()); // 若数组a的大小 >= Vector的元素个数; // 则将Vector的全部元素都拷贝到数组a中。 System.arraycopy...
www.jb51.net/article/2100...htm 2024-12-3

C语言源码实现俄罗斯方块_C 语言_脚本之家

static const uint16_t gs_uTetrisTable[7][4] = { { 0x00F0U, 0x2222U, 0x00F0U, 0x2222U }, // I型 { 0x0072U, 0x0262U, 0x0270U, 0x0232U }, // T型 { 0x0223U, 0x0074U, 0x0622U, 0x0170U }, // L型 { 0x0226U, 0x0470U, 0x0322U, 0x0071U }, // J型 ...
www.jb51.net/article/1426...htm 2024-11-27

使用spring boot 整合kafka,延迟启动消费者_java_脚本之家

"@DelayKafkaConsumer for topic '%s' can't resolve '%s' as an Integer or String", topic, resolvedValue)); } } private Set<DelayKafkaConsumer> findListenerAnnotations(Method method) { Set<DelayKafkaConsumer> listeners = new HashSet<>(); DelayKafkaConsumer ann = AnnotationUtils.findAnnotation(...
www.jb51.net/article/2191...htm 2024-12-6

.NET操作NPOI实现Excel的导入导出_C#教程_脚本之家

Array.ForEach<PropertyInfo>(t.GetProperties(), p => { if (dt.Columns.IndexOf(p.Name) != -1) prlist.Add(p); }); //创建返回的集合 List<TResult> oblist = new List<TResult>(); foreach (DataRow row in dt.Rows) { //创建TResult的实例 TResult ob = new TResult(); //找到对应...
www.jb51.net/program/2985123...htm 2024-11-25

Android逆向之dex2oat的实现解析_Android_脚本之家

size_t thread_count) : compiler_options_(compiler_options), compiler_kind_(compiler_kind), instruction_set_(instruction_set), instruction_set_features_(instruction_set_features), verification_results_(verification_results), method_inliner_map_(method_inliner_map), runtime_(nullptr), thread_count...
www.jb51.net/article/2248...htm 2024-11-22