返回顶部
首页 > 资讯 > 后端开发 > 其他教程 >C语言如何输出教学日历表
  • 221
分享到

C语言如何输出教学日历表

2023-06-30 17:06:13 221人浏览 八月长安
摘要

本篇内容主要讲解“C语言如何输出教学日历表”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C语言如何输出教学日历表”吧!按照格式分别输入学期,开学时间,总周数即可得到课程表,以回车结束。eg.学期

本篇内容主要讲解“C语言如何输出教学日历表”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C语言如何输出教学日历表”吧!

按照格式分别输入学期,开学时间,总周数即可得到课程表,以回车结束。

eg.

学期:2021-2022_2

开学时间:2021/11/25

总周数:20

输出结果

C语言如何输出教学日历表

#include<stdio.h>#include<windows.h> int Weekdayofyear(int year);int Isprime(int year);int Days(int year, int mouth);int Weekday(int year, int mouth, int day);int Max(int year,int mouth);   int main() {char title1[] = "\t\txxxxxx大学教学日历\t\t";char title2[] = "0000-0000学年第0学期";char tab[60] = "周      一      二      三      四      五      六      日";char term3;char calender[100][8];int tempday, tempmouth,flag = 1,b,c,d,e,f,g,h,i,j, cnt = 1, week,term1, term2,year, mouth, day; printf("学期:");scanf("%d-%d_%c", &term1, &term2, &term3);   printf("开学时间:");scanf("%d/%d/%d", &year, &mouth, &day);;printf("总周数:");scanf("%d", &week);tempday = day;tempmouth = mouth;for (b = 3; b >= 0; b--)          {                                      title2[b] = term1 % 10 + 48;term1 /= 10;}for (c = 8; c >= 5; c--)           {title2[c] = term2 % 10 + 48;term2 /= 10;}title2[15] = term3;                     for (d = 0; d < week; d++) {calender[d][0] = d + 1;}for (e = 0; e < week; e++) {for (f = 1; f < 8; f++) { if (e == 0) {                   for (g = 1; g < Weekday(year, mouth, day); g++) {calender[e][g] = 0;}for (h = Weekday(year, mouth, day);h < 8; h++) {calender[e][h] = day++;}break;    }if (day > Max(year, mouth)) {mouth += 1;if (mouth > 12) {mouth = 1;}calender[e][f] = -mouth;day = 2; }else {calender[e][f] = day++;}}}puts(title1);printf("\t\t  ");puts(title2);puts(tab);   for (i = 0; i < week; i++) {                            for (j = 0; j < 8; j++) {if (calender[i][j] == 0) {  printf("  \t");continue;}if (calender[i][j] < 0) {//SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 15 | 0 | 128 | 0);  printf("%d月\t", -calender[i][j]);//SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7 | 0 | 0 | 0);}else {printf("%2d\t", calender[i][j]);}}printf("\n");}} int Weekdayofyear(int year) {            int days = 0, week;int a;for (a = 0; a < year - 1900; a++) {if (a % 4 == 0) days += 366;else days += 365;}week = days % 7;if (week == 0) week = 7;return week;}int Isprime(int year) {    char flag;if (year % 4 == 0) {flag = 1;}else {flag = 0;}return flag;}int Days(int year, int mouth) {     int days = 0;int isprime;isprime = Isprime(year);switch (mouth) {case 12:days += 31;case 11:days += 30;case 10:days += 31;case 9:days += 30;case 8:days += 31;case 7:days += 31;case 6:days += 30;case 5:days += 31;case 4:days += 30;case 3:days += 31;case 2:if (isprime == 1) days += 29;  else days += 28;case 1:days += 31;}return days;}int Weekday(int year, int mouth, int day) {     int days;int weekday;days = Days(year, mouth - 1);days += day;weekday = days % 7;weekday = weekday + Weekdayofyear(year) - 1;if (weekday > 7) weekday -= 7;return weekday;}int Max(int year,int mouth) {     int days;int isprime;isprime = Isprime(year);switch (mouth) {case 12:days = 31; break;case 11:days = 30; break;case 10:days = 31; break;case 9:days = 30; break;case 8:days = 31; break;case 7:days = 31; break;case 6:days = 30; break;case 5:days = 31; break;case 4:days = 30; break;case 3:days = 31; break;case 2:if (isprime == 1) days = 29;   else days = 28; break;case 1:days = 31; break;}return days;}

VS版本

#include<stdio.h>#include<windows.h>int Isprimeofyear(int year) {    //判断是否为闰年char flag;if (year % 4 == 0) {flag = 1;}else {flag = 0;}return flag;}int Weekdayofyear(int year) {            //1900年1月1日是星期一,判断这一年的1月1日是星期几int days = 0, week;for (int i = 0; i < year - 1900; i++) {if (i % 4 == 0) days += 366;else days += 365;}week = days % 7;if (week == 0) week = 7;return week;}int Mouthofdays(int year, int mouth) {      //输出月份到年初有多少天int days = 0;int isprime;isprime = Isprimeofyear(year);switch (mouth) {case 12:days += 31;case 11:days += 30;case 10:days += 31;case 9:days += 30;case 8:days += 31;case 7:days += 31;case 6:days += 30;case 5:days += 31;case 4:days += 30;case 3:days += 31;case 2:if (isprime == 1) days += 29;  else days += 28;case 1:days += 31;}return days;}int Weekdayofday(int year, int mouth, int day) {     //返回输入时间的星期数int days;int weekday;days = Mouthofdays(year, mouth - 1);days += day;weekday = days % 7;weekday = weekday + Weekdayofyear(year) - 1;if (weekday > 7) weekday -= 7;return weekday;}int Maxofmouth(int year,int mouth) {     //返回一个月最多有多少天int days;int isprime;isprime = Isprimeofyear(year);switch (mouth) {case 12:days = 31; break;case 11:days = 30; break;case 10:days = 31; break;case 9:days = 30; break;case 8:days = 31; break;case 7:days = 31; break;case 6:days = 30; break;case 5:days = 31; break;case 4:days = 30; break;case 3:days = 31; break;case 2:if (isprime == 1) days = 29;   else days = 28; break;case 1:days = 31; break;}return days;}int main() {int year, mouth, day;char title1[] = "\t\txxxxxx大学教学日历\t\t";char title2[] = "0000-0000学年第0学期";char tab[60] = "周      一      二      三      四      五      六      日";int term1, term2;char term3;int week;char calender[100][8];int cnt = 1;int tempday, tempmouth;int flag = 1;printf("学期:");scanf_s("%d-%d_%c", &term1, &term2, &term3);   //输入学期printf("开学时间:");scanf_s("%d/%d/%d", &year, &mouth, &day);;printf("总周数:");scanf_s("%d", &week);tempday = day;tempmouth = mouth;for (int i = 3; i >= 0; i--)           //把输入的int型的学期数转化为char型存入(替代0)title2中以打印{                                      title2[i] = term1 % 10 + 48;term1 /= 10;}for (int j = 8; j >= 5; j--)           //同上{title2[j] = term2 % 10 + 48;term2 /= 10;}title2[15] = term3;                     //同上for (int i = 0; i < week; i++) {calender[i][0] = i + 1;}for (int i = 0; i < week; i++) {for (int j = 1; j < 8; j++) { if (i == 0) {                   //日历第一行同部星期数for (int k = 1; k < Weekdayofday(year, mouth, day); k++) {calender[i][k] = 0;}for (int k = Weekdayofday(year, mouth, day); k < 8; k++) {calender[i][k] = day++;}break;    }if (day > Maxofmouth(year, mouth)) {mouth += 1;if (mouth > 12) {mouth = 1;}calender[i][j] = -mouth;day = 2; }else {calender[i][j] = day++;}}}puts(title1);printf("\t\t  ");puts(title2);puts(tab);   for (int i = 0; i < week; i++) {                            //输出表格for (int j = 0; j < 8; j++) {if (calender[i][j] == 0) {  printf("  \t");continue;}if (calender[i][j] == tempday && flag == 1) {printf("\b\b\b%d.%d.%d   ", year, tempmouth, tempday);flag = 0;continue;}if (calender[i][j] < 0) {SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 15 | 0 | 128 | 0);  //前景色|背景色|前景加强|背景加强printf("%d月\t", -calender[i][j]);SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7 | 0 | 0 | 0);}else {printf("%2d\t", calender[i][j]);}}printf("\n");}}

到此,相信大家对“C语言如何输出教学日历表”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

--结束END--

本文标题: C语言如何输出教学日历表

本文链接: https://lsjlt.com/news/330604.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • C语言如何输出教学日历表
    本篇内容主要讲解“C语言如何输出教学日历表”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C语言如何输出教学日历表”吧!按照格式分别输入学期,开学时间,总周数即可得到课程表,以回车结束。eg.学期...
    99+
    2023-06-30
  • C语言输出教学日历表的方法实例
    按照格式分别输入学期,开学时间,总周数即可得到课程表,以回车结束。 eg. 学期:2021-2022_2 开学时间:2021/11/25 总周数:20 输出结果 #include&...
    99+
    2024-04-02
  • C语言怎么打印输出某一年的日历
    本篇内容主要讲解“C语言怎么打印输出某一年的日历”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C语言怎么打印输出某一年的日历”吧!输入一个年份(1970以后的),以 2*6 的格式打印当年的日历...
    99+
    2023-06-08
  • c语言如何反序输出
    要反序输出一个数组或者字符串,可以使用以下方法:1. 对于数组,可以使用循环从最后一个元素开始遍历,依次输出每个元素。例如:```c...
    99+
    2023-08-18
    c语言
  • c语言如何输出ascii码
    在C语言中,可以通过使用整数类型的变量来存储ASCII码值,并通过printf函数来输出。以下是一种常见的方法: #include ...
    99+
    2023-10-28
    c语言
  • C语言如何实现链表逆序并输出
    这篇文章主要介绍了C语言如何实现链表逆序并输出的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C语言如何实现链表逆序并输出文章都会有所收获,下面我们一起来看看吧。C语言数据结构实现链表逆序并输出将一个链表逆序并输...
    99+
    2023-06-16
  • c语言printf如何输出中文
    在C语言中,要输出中文字符,需要使用宽字符函数wprintf()和宽字符字符串类型wchar_t。以下是一个示例代码:```c#in...
    99+
    2023-10-11
    c语言
  • c语言输出nan如何解决
    在C语言中,当计算结果为NaN时,可以使用isnan()函数来判断是否为NaN,然后进行相应的处理。 示例代码如下: #includ...
    99+
    2024-04-08
    c语言
  • 一起来学习C语言的输入和输出
    目录一、scanf() 和 printf() 函数实例二、getchar() 和 putchar() 函数实例1实例2三、gets() 和 puts() 函数实例...
    99+
    2024-04-02
  • c语言如何输出时间格式
    C语言中,可以使用ctime函数将时间以字符串格式输出。ctime函数的原型如下:```cchar *ctime(const tim...
    99+
    2023-08-31
    c语言
  • c语言如何实现声音输出
    在C语言中,可以使用音频库来进行声音输出。以下是使用ALSA音频库来实现声音输出的示例代码: #include int main...
    99+
    2023-10-25
    c语言
  • c语言如何输出整个数组
    在 c 语言中,可通过以下方法输出整个数组:1. 使用 for 循环;2. 使用指针;3. 使用 range-based for 循环(c++11 及更高版本)。 如何用 C 语言输出...
    99+
    2024-05-22
    c语言 c++
  • 使用C语言如何输出逆序数
    目录题目内容:第一种写法第二种写法C语言输入一个任意长度的整数,将其逆序输出总结题目内容: 从键盘任意输入一个3位整数,编程计算并输出它的逆序数(忽略整数前的正负号)。例如,输入-1...
    99+
    2024-04-02
  • c语言如何倒序输出字符串
    有多种方法可以实现字符串的倒序输出,以下是其中一种方法: #include <stdio.h> #include <...
    99+
    2024-04-02
  • 如何使用C语言输入输出printf、scanf函数
    本篇内容主要讲解“如何使用C语言输入输出printf、scanf函数”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何使用C语言输入输出printf、scanf函数”吧!基本输入输出若需要使用输...
    99+
    2023-06-15
  • C语言如何输出100到200的素数
    今天小编给大家分享一下C语言如何输出100到200的素数的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。<1>这个...
    99+
    2023-06-17
  • c语言如何判断奇偶数并输出
    判断奇偶数的方法是通过对该数与2进行取余操作,如果结果为0,则为偶数;如果结果为1,则为奇数。下面是一个示例代码: #include...
    99+
    2023-10-23
    c语言
  • c语言中使用putchar输出如何空行
    要在C语言中输出空行,可以使用putchar函数打印一个换行符('\n')。换行符是特殊字符,用于表示文本中的换行操...
    99+
    2023-10-21
    c语言
  • c语言中double类型的数如何输出
    在C语言中,可以使用 printf 函数将 double 类型的数输出到屏幕上。可以使用 %lf 格式化代码来指定输出的是一个 do...
    99+
    2024-02-29
    c语言
  • R语言如何实现输出九九乘法表
    这篇文章给大家分享的是有关R语言如何实现输出九九乘法表的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。在R语言中,使用cat()函数可以将多个变量连接起来并输出到控制台或者File文件中。演示cat()函数的用法/...
    99+
    2023-06-08
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作