主页 > 程序语言 > 急求c语言程序设计300行

急求c语言程序设计300行

2023-11-09 14:54来源:m.sf1369.com作者:宇宇

一、急求c语言程序设计300行

#include <stdio.h>

void main()

{

printf( ); /*输出空格*/

printf( ); /*输出空格*/

printf( ); /*输出空格*/

printf( ); /*输出空格*/

printf( ); /*输出空格*/

printf( ); /*输出空格*/

/*后面自己复制粘贴吧…… 贴个三百行*/

}

二、C语言中多个语句能否写在同一行上,能否把一条语句分成几行写?

C语言中多个语句可以写在同一行上,可以把一条语句分成几行写,操作方法如下:

1、首先在编程软件中,点击文件->新建一个C++工程。

2、然后在工程中输入代码。

3、代码的运行结果。从上到下:b=20,a=100。由此可知:复合语句先算小范围的,再算大范围。

4、将上面的代码改一下。

5、代码改后,从上到下是b=20.c=30,a=100,由此可知符合语句是先上后下,先内后外。

三、c语言程序 运行程序输出大概有300行左右

#include<stdio.h>

void main()

{

char a;

int i,b,n,m=-1;

scanf(%c,&a);

scanf(%d,&b);

for(n=b;n>=1;n--)

{

for(i=1;i<n;i++)

printf( );

m+=2;

for(i=1;i<=m;i++)

printf(%c,a);

printf(\n);

}

}

四、C语言不少于80行的程序语句

#include int main (void) { int i; int year,total,total1,total2; int mon1,mon2; int day1,day2; int year1[12] = {31,28,31,30,31,30,31,31,30,31,30,31}; int year2[12] = {31,29,31,30,31,30,31,31,30,31,30,31}; total1 = total2 = 0; printf (请输入您要计算哪一年:); scanf (%d,&year); if (year%4==0 && year%100!=0 || year%400==0)//判断此年是否是闰年,如果是闰年执行下面的语句 { printf (%d年是闰年.\n,year); printf (请输入第一个月份:); while (scanf (%d,&mon1) == 1) { if (mon1>12 || mon1<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入第一个月份:); } else break; } printf (请输入此月的第几天:); while (scanf (%d,&day1) == 1) { if (mon1 == 2) { if (day1>29 || day1<=0)//闰年二月有29天 { printf (您的输入有误,请重新输入!\n); printf (请输入此月的第几天:); } else break; } else break; } printf (请输入第二个月份:); while (scanf (%d,&mon2) == 1) { if (mon2>12 || mon2<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入第二个月份:); } else break; } printf (请输入此月的第几天:); while (scanf (%d,&day2) == 1) { if (mon2 == 2) { if (day2>29 || day2<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入此月的第几天:); } else break; } else break; } for (i=0; i total1 += year1[i]; total1 += day1; for (i=0; i total2 += year1[i]; total2 +=day2; if (total1 > total2) total = total1 - total2; else total = total2 - total1; printf (这两个日期共相差 %d 天!\n,total); } else//不是闰年的情况 { printf (%d年不是闰年.\n,year); printf (请输入第一个月份:); while (scanf (%d,&mon1) == 1) { if (mon1>12 || mon1<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入第一个月份:); } else break; } printf (请输入此月的第几天:); while (scanf (%d,&day1) == 1) { if (mon1 == 2)//平年二月有28天 { if (day1>28 || day1<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入此月的第几天:); } else break; } else break; } printf (请输入第二个月份:); while (scanf (%d,&mon2) == 1) { if (mon2>12 || mon2<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入第二个月份:); } else break; } printf (请输入此月的第几天:); while (scanf (%d,&day2) == 1) { if (mon2 == 2) { if (day2>28 || day2<=0) { printf (您的输入有误,请重新输入!\n); printf (请输入此月的第几天:); } else break; } else break; } for (i=0; i total1 += year2[i]; total1 += day1; for (i=0; i total2 += year2[i]; total2 += day2; if (total1 > total2) total = total1 - total2; else total = total2 - total1; printf (这两个日期共相差 %d 天!\n,total); } return 0; }这个应该不会有雷同! 而且够长

相关推荐

哪些编程语言是函数式的

程序语言 2024-01-14

VB编程的函数详解

程序语言 2024-01-02

c语言扑克牌问题

程序语言 2023-12-28

iphone语言与地区有什么用?

程序语言 2023-12-19

C语言程序,怎么使用,

程序语言 2023-12-17

把word嵌入到C#程序中

程序语言 2023-11-26

HTML是不是编程语言?

程序语言 2023-11-17