自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 c语言(报错)

#include "stdio.h" /*I/O函数*/#include"stdlib.h" /*标准库函数*/#include"string.h" //字符串函数#include"stdlib.h" //字符操作函数#include"conio.h" #define MAX 50 //定义常数表示记录数struct ADDRESS //定义数据结构{ char name[15]; //姓名 char units[20];...

2022-04-30 14:41:24 609

原创 每日学习java笔记

跳转语句 利用break语句来进行语句的跳转例题1package Example14.java;public class Example15 { public static void main(String[]args) { int x=1; while (x<=4) { System.out.println("x="+x); x++; } }}结果:x=1...

2022-03-09 23:01:49 191

原创 每日学习Java笔记

常量(Constant)在Java语言中,用关键字final来定义一个常量。常量一旦被初始化之后不能再更改例如:package TestConstant;public class TeatConstant { public static void main(String[] args){ final double PI =3.14; //PI =3.1415; //无法为常量再次分配值 final int MAX_SPEED =...

2022-03-01 21:54:59 1679

原创 每日Java学习笔记

*第一个测试代码;package com.itheima.first;public class HelloWorld { public static void main(String[] args) { System.out.println("这是第一个Java程序!"); }}*变量的本质;package variable;public class TestVariable { public static void main(St...

2022-02-28 21:46:21 237

原创 求三个整数的最大值

三个整数的最大值include<stdii.h>int main(){int a,b,c,max;printf(’‘请输入三个整数\n’’);scanf(’’%d %d %d’’,&a,&b,&c);if(a>b){max=a;}else{max=b;}max=a;if(b>max){max=b;}max=b;if(c>max){max=c;}printf(’’%d\n’’,max);return 0;

2022-01-10 10:39:50 324

空空如也

空空如也

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

TA关注的人

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