上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 char *process(char * s); 4 int main(void) 5 { 6 char str[200]; 7 //char str[200] = "Hello world.This is c 阅读全文
posted @ 2020-05-19 09:40 jason2018 阅读(619) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-15 11:12 jason2018 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 QQ:778138708 3 date:2020年5月15日 4 单链表结点删除 5 */ 6 #include <stdio.h> 7 #include <stdlib.h> 8 9 struct ListNode { 10 int data; 11 struct ListNode 阅读全文
posted @ 2020-05-15 11:11 jason2018 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 QQ:7878138708 3 date:2020年5月16日 4 奇数值结点链表 5 */ 6 #include <stdio.h> 7 #include <stdlib.h> 8 9 struct ListNode { 10 int data; 11 struct ListNode 阅读全文
posted @ 2020-05-15 10:03 jason2018 阅读(680) 评论(1) 推荐(1) 编辑
摘要: 1 /* 2 QQ:778138708 3 date:2020-5-14 4 输入年份和月份,打印当月日历 5 6 */ 7 /* 8 日期转换为星期的方法 9 W= (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400+1)%7 10 在公式中d表示日期中的日数,m表示月份数,y表 阅读全文
posted @ 2020-05-14 14:28 jason2018 阅读(1262) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 这个题目重点考核浮点数比较大小的问题,头有点大。 5 */ 6 #include <stdio.h> 7 #include <math.h> 8 #define EPS 1e-6 9 int main(voi 阅读全文
posted @ 2020-05-07 13:18 jason2018 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 xuejineng2016@163.com 3 2020年5月6日 4 */ 5 #include<stdio.h> 6 int main(void) 7 { 8 int num, ret, error = 0; 9 char ch; 10 11 scanf_s("%d", &num) 阅读全文
posted @ 2020-05-06 19:44 jason2018 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 xuejineng2016@163.com 3 2020年5月6日 4 */ 5 #include<stdio.h> 6 int main(void) 7 { 8 int year, month, day; 9 int isleap; 10 int i; 11 //用数组定义每个月的天 阅读全文
posted @ 2020-05-06 19:11 jason2018 阅读(200) 评论(0) 推荐(0) 编辑
摘要: /* xuejineng2016@163.com 2020年5月6日 */ #include<stdio.h> int main(void) { int score; char grade; scanf("%d", &score); switch (score / 10) { case 10: ca 阅读全文
posted @ 2020-05-06 18:29 jason2018 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 老实说,这道题目我没有看懂,但是还是做对了。 1 #include<stdio.h> 2 int main(void) 3 { 4 int n; 5 6 scanf("%d", &n); 7 if (n == 0) 8 { 9 printf("0"); 10 } 11 else 12 { 13 pr 阅读全文
posted @ 2020-05-06 18:19 jason2018 阅读(325) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页