随笔分类 - c语言
摘要: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表
阅读全文
摘要: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
阅读全文
摘要: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)
阅读全文
摘要: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 //用数组定义每个月的天
阅读全文
摘要:/* 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
阅读全文
摘要:老实说,这道题目我没有看懂,但是还是做对了。 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
阅读全文
摘要:1 #include<stdio.h> 2 int main(void) 3 { 4 int now, delay; 5 int minutes; 6 int after_hour, after_minute; 7 8 scanf("%d %d", &now, &delay); 9 minutes
阅读全文
摘要:1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 这是一个前导0的问题 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int year, month, day; 10 11 scanf("%d-%d-%d",
阅读全文
摘要:1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int a, b; 10 scanf("%d %d", &a, &b); 11 12 printf("%d +
阅读全文
摘要:1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 将华氏度转换为摄氏度 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int celsius, fahr; 10 11 scanf("%d", &fahr);
阅读全文
摘要:1 /* 2 QQ:778138708 3 2020年5月5日 4 */ 5 #include<stdio.h> 6 int main(void) 7 { 8 const int N = 4; //倒三角形的行数 9 for (int i = 0; i < N; i++) 10 { 11 for (
阅读全文
摘要:1 /* 2 QQ:778138708 3 2020年5月6日 4 厘米换算英尺英寸 5 思路:将输入的厘米数换成浮点数形式的英尺,然后求整数形式的英尺和英寸 6 */ 7 #include <stdio.h> 8 int main(void) 9 { 10 int centimeter; 11 i
阅读全文
摘要:student.h 1 #include<stdio.h> 2 #include<string.h> 3 #define MaxSize 50 4 struct student 5 { 6 int num; 7 char name[10]; 8 int computer, english, math
阅读全文
摘要:NMEA-0183协议是为了在不同的GPS(全球定位系统)导航设备中建立统一的BTCM(海事无线电技术委员会)标准,由美国国家海洋电子协会(NMEA-The National Marine Electronics Associa-tion)制定的一套通讯协议。GPS接收机根据NMEA-0183协议的
阅读全文
摘要:题目内容: 你的程序要读入一行文本,其中以空格分隔为若干个单词,以‘.’结束。你要输出这行文本中每个单词的长度。这里的单词与语言无关,可以包括各种符号,比如“it's”算一个单词,长度为4。注意,行中可能出现连续的空格。 输入格式: 输入在一行中给出一行文本,以‘.’结束,结尾的句号不能计算在最后一
阅读全文
摘要:浙大C语言慕课的题目,需要考虑多项式输出的各种特殊情况。 /* * 这个题目应该用%+d这种方式显示正负号。 * **/#include <stdio.h> int main(void) { //系数和幂 int a, n; //最大的幂 int maxN; //用来统计多项式的个数 int cnt
阅读全文
摘要:1 #include <stdio.h> 2 3 int main(void) 4 { 5 int n, i, j, k, a[10], len; //假设数组的长度小于等于10 6 7 scanf("%d", &n); 8 for (i = 0; i < n; i++) 9 { 10 scanf(
阅读全文
摘要:输入一个正整数n(1≤n≤9),打印一个高度为n的、由“*”组成的等腰三角形图案。当n=3时,输出如下等腰三角形图案: ***** *** * #include <stdio.h> int main(void) { int i, j, n; scanf("%d", &n); for (i = n;
阅读全文
摘要:输入一个非负整数,从高位开始逐位分割并输出它的各位数字。例如,输入9837,输出9 8 3 7 #include <stdio.h> int main(void) { int digit, number, pow, t_number; scanf("%d", &number); t_number =
阅读全文
摘要:https://pintia.cn/problem-sets/13/problems/410 1 #include <stdio.h> 2 int main(void) 3 { 4 int n; 5 int numerator, denominator; 6 int flag; 7 double i
阅读全文