自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 java输出对象的数组、list、set、map、Properties

TestMain.java@Test public void test4(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); Student student = (Student) context.getBean("student"); System.out.println(student.getName()); S.

2021-07-19 17:11:52 256

原创 判断素数

#include<stdio.h> #include<math.h> int main() {    int n,k,i;    scanf("%d",&n);    k=sqrt(n)+0.01;    for(i=2;i<=k;i=i+1)    {        if(n%i==0)         break;     }     if(i==k+1)...

2018-04-25 22:07:35 154

原创 求两个整数的最大公约数和最小公倍数

#include<stdio.h>int gcd(int a,int b){    int t;    if(a<b)    {        t=a;        a=b;        b=t;    }    if(a%b==0)        return b;    return gcd(b,a%b);}int lcm(int a,int b){    int q; ...

2018-04-25 22:05:31 240

原创 c语言武功秘籍

#include<stdio.h> int main() {     int a,b,s;     while(scanf("%d %d",&a,&b)!=EOF)     {         s=b/2-a/2+1;         printf("%d\n",s);     }     return 0; } ...

2018-04-25 22:02:45 750

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除