摘要: // main.cpp // stack_quhao // Created by duanqibo on 2019/6/29. // Copyright © 2019年 duanqibo. All rights reserved. // 顺序栈的操作,整数进栈,取栈顶元素,栈内剩余元素 #inclu 阅读全文
posted @ 2019-06-29 17:59 bobo哥 阅读(3070) 评论(0) 推荐(0)
摘要: // // main.cpp // Graph_wuxiang // // Created by duanqibo on 2019/6/29. // Copyright © 2019年 duanqibo. All rights reserved. // 无向图的邻接矩阵存储,4个顶点、4条边,v0到 阅读全文
posted @ 2019-06-29 15:48 bobo哥 阅读(686) 评论(0) 推荐(0)
摘要: // // main.cpp // ruanjiankaifagongju3 // // Created by duanqibo on 2019/6/29. // Copyright © 2019年 duanqibo. All rights reserved. //2016年10月《软件开发工具》编 阅读全文
posted @ 2019-06-29 15:34 bobo哥 阅读(219) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #define N 10 //10是一个填空 int main() { int i,j,k,t,a[N]; printf("请输入5个整数:"); for(i=0;i<=N-1;i++) scanf("%d",&a[i]) 阅读全文
posted @ 2019-06-29 09:23 bobo哥 阅读(263) 评论(0) 推荐(0)
摘要: /* Name : max.c Author : duanqibo Version : Copyright : Your copyright notice Description : 输入三个整数,找出最大值 */ #include <stdio.h>#include <stdlib.h>int m 阅读全文
posted @ 2019-06-28 22:44 bobo哥 阅读(3515) 评论(0) 推荐(0)
摘要: /* Name : max_min.c Author : duanqibo Version : Copyright : Your copyright notice Description : 输入6个学生成绩,找出最高分和最低分,用函数实现 */ #include <stdio.h>#include 阅读全文
posted @ 2019-06-28 22:42 bobo哥 阅读(2137) 评论(0) 推荐(0)
摘要: /* Name : bubble_sort.c Author : duanqibo Version : Copyright : Your copyright notice Description : 输入6个成绩,冒泡排序,求平均分,再找出大于平均分的分数,最后将成绩中的偶数显示出来 */ #inc 阅读全文
posted @ 2019-06-28 22:28 bobo哥 阅读(338) 评论(0) 推荐(0)
摘要: 程序功能:控制台输入车辆信息,将信息保存至数据库中 程序代码如下: BaseDao.java package DAO_dome.kehozuoye; import java.sql.Connection;import java.sql.DriverManager;import java.sql.Pr 阅读全文
posted @ 2019-06-28 16:26 bobo哥 阅读(2087) 评论(0) 推荐(0)
摘要: package ch01; import java.util.Scanner; public class upper { @SuppressWarnings("resource") public static void main(String[] args) { String s; System.o 阅读全文
posted @ 2019-06-28 16:05 bobo哥 阅读(4851) 评论(0) 推荐(0)
摘要: package ch01; import java.util.Scanner; public class string1 { public static void main(String[] args) { String s=" "; //String s1="0"; System.out.prin 阅读全文
posted @ 2019-06-28 16:04 bobo哥 阅读(5452) 评论(0) 推荐(0)