自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 问答 (1)
  • 收藏
  • 关注

原创 zxcvbnm

jmu-Java-02基本语法-04-动态数组 (2 分) import java.util.; public class Main{ public static void main(String[]args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int a=sc.nextInt(); for(int i=1;i<=a;i++) { for(int j=1;j<=i;j++) { System.out.print(i+

2021-07-15 22:26:30 545

原创 362087055

单链表逆转 List Reverse( List L ) { List p1=NULL,p2=NULL; while (L) { p2=L->Next; L->Next=p1; p1=L; L=p2; } return p1; } 顺序表操作集 List MakeEmpty() { List p; p=(List)malloc(sizeof(struct LNode)); p->Last=-1; return p; } Position Find(List L, ElementType X

2021-01-10 18:00:26 135

原创 不挂科2021

计算摄氏温度 # include <stdio.h> int main (void) { int celsius, fahr; fahr=100; celsius=5*(fahr-32)/9; printf ("fahr =% d, celsius =% d\n", fahr, celsius); return 0; } 计算火车运行时间 #include<stdio.h> int main(){ int x,y,a,b; scanf("%d%d",&x,

2020-12-31 22:53:37 319 4

空空如也

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

TA关注的人

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