2019年12月22日
摘要: 注:本文内容均来自于W3School的HTML学习板块,以下是对原文内容的摘录。 HTML基本术语 @HTMl指的是超文本标记语言(Hyper Text Markup Language)。 @HTML不是一种编程语言,而是一种标记语言(markup language)。 @标记语言是一套标记标签(m 阅读全文
posted @ 2019-12-22 13:14 ComMario 阅读(192) 评论(0) 推荐(0) 编辑
2019年11月24日
摘要: #include <stdio.h> #include <stdlib.h> int comp_inc(const void *first, const void *second) { return *(int *)first-*(int *)second; } int times[2048]; i 阅读全文
posted @ 2019-11-24 19:50 ComMario 阅读(114) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int min=0; int num; int temp; int sum=0; scanf("%d", &num); while(num--) { scanf("%d", &temp); sum+=temp; if((sum<0)&& 阅读全文
posted @ 2019-11-24 19:41 ComMario 阅读(116) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { long long n; int a, b; scanf("%lld", &n); if(n>0) ; else { if((n>=(-10))&&(n<0)) n=0; else { a=(n%10)*(-1); b=((n/10)% 阅读全文
posted @ 2019-11-24 15:14 ComMario 阅读(135) 评论(0) 推荐(0) 编辑
摘要: @在已知输入数据规模的前提下,定义数组的时,数组的大小一定要严格且略大于该规模! @C语言中qsort函数的用法。头文件:#include <stdlib.h>。 #include <stdio.h> #include <stdlib.h> int comp_inc(const void *firs 阅读全文
posted @ 2019-11-24 11:03 ComMario 阅读(199) 评论(0) 推荐(0) 编辑
2019年11月12日
摘要: #include <stdio.h> int main() { int a[120]; int num; scanf("%d", &num); int i; int max=-1; for(i=0; i<num; ++i) { scanf("%d", &a[i]); if(a[i]>max) max 阅读全文
posted @ 2019-11-12 21:12 ComMario 阅读(144) 评论(0) 推荐(0) 编辑
2019年11月11日
摘要: #include <stdio.h> #define min(x, y) (x<y?x:y) int main() { int a[10]={0, 10, 5, 10, 5, 2, 5, 10, 5, 10}; int k, r; scanf("%d %d", &k, &r); int temp=k 阅读全文
posted @ 2019-11-11 16:52 ComMario 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int n, k; scanf("%d %d", &n, &k); int ans, i; int sum=0; for(i=0; i<=n; ++i) { sum+=i; if((5*sum)<=(240-k)) ans=i; els 阅读全文
posted @ 2019-11-11 16:43 ComMario 阅读(76) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define max(x, y, z) (x>y?x>z?x:z:y>z?y:z) #define min(x, y, z) (x<y?x<z?x:z:y<z?y:z) int main() { int a, b, c; scanf("%d %d %d", & 阅读全文
posted @ 2019-11-11 16:39 ComMario 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int n; scanf("%d", &n); int temp; scanf("%d", &temp); int min=temp; int max=temp; int Count=0; while(--n) { scanf("%d" 阅读全文
posted @ 2019-11-11 16:34 ComMario 阅读(117) 评论(0) 推荐(0) 编辑