三九宝宝网宝宝成长经典故事

求C语言程序设计实例要100行以上

03月06日 编辑 39baobao.com

[c语言排序程序]#include <stdio.h> void main() { int a[10]; int i,j,t; for(i=0;i<=9;i++) scanf("%d",&a[i]); for(i=0;i<9;i++) for(j=i+1;j<10;j++) { if(a[i]>a[j]) { /*交换从这里开...+阅读

Problem Description: The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the elevator up one floor, and 4 seconds to move down one floor. The elevator will stay for 5 seconds at each stop.

For a given request list, you are to compute the total time spent to fulfill the requests on the list. The elevator is on the 0th floor at the beginning and does not have to return to the ground floor when the requests are fulfilled.

Input: There are multiple test cases. Each case contains a positive integer N, followed by N positive numbers. All the numbers in the input are less than 100. A test case with N = 0 denotes the end of input. This test case is not to be processed.

Output Print the total time on a single line for each test case.

Sample Input 1 2 3 2 3 1 0

Sample Output 17 41

Here is my code:

#include int time(int a,int b) { if(a==b)return 0; else if(a

请问谁有C语言经典的编程题目谢谢小弟第一次提问各位大哥

打鱼还是晒网

中国有句俗语叫“三天打鱼两天晒网”。某人从1990年1月1日起开始“三天打鱼两天晒网”,问这个人在以后的某一天中是“打鱼”还是“晒网”。

*问题分析与算法设计

根据题意可以将解题过程分为三步:

1)计算从1990年1月1日开始至指定日期共有多少天;

2)由于“打鱼”和“晒网”的周期为5天,所以将计算出的天数用5去除;

3)根据余数判断他是在“打鱼”还是在“晒网”;

若余数为1,2,3,则他是在“打鱼”

否则 是在“晒网”

在这三步中,关键是第一步。求从1990年1月1日至指定日期有多少天,要判断经历年份中是否有闰年,二月为29天,平年为28天。闰年的方法可以用伪语句描述如下:

如果 ((年能被4除尽 且 不能被100除尽)或 能被400除尽)

则 该年是闰年;

否则 不是闰年。

几道简单的C语言编程题请高手帮忙

1

#include

int main()

{

int sum = 0,i = 1,k = 1,j;

for(i=1;ij = k*i;

sum += j;

k*=-1;

}

printf("%d\n",sum);

return 0;

}

2

#include

int main()

{

int n,i;

while(scanf("%d",&n) == 1 & n>1) {

for(i = 2;i*iif(n%i == 0) break;

}

if(i*i >n) printf("素数\n");

else printf("合数\n");

}

return 0;

}

#include

int main()

{

int a,b,c;

while(scanf("%d %d %d",&a,&b,&c) == 3) {

int max = a;

if(max if(max printf("%d\n",max);

}

return 0;

}

4看不到图

#include

int findmin(int *s,int n) /* s表示数组的首地址,n是数组大小*/

{

int i,min,j;

min = s[0],j = 0;

for(i = 1;iif(min >s[i]) min = s[i],j = i;

return j;

}

main()

{int a[10],i,k;

for (i=0; iscanf("%d",&a[i]);

k=findmin(a,10);

printf("%d,%d\n",k,a[k]);

}

以下为关联文档:

C语言排序程序写法冒泡法! #include<stdio.h> int main() { int a[10],i,j,t; printf("Input 10 numbers:\n"); for(i=0;i<10;i++) scanf("%d",&amp;a[i]); printf("\n"); for(i=0;i<9;i++) for(j=0;...

求一个关于C语言排序输出的程序 #include "stdio.h" #define N 20 void main( ) { int x[N],i,n,t; for(i=0;i<N;i++) x[i]=i+1; for(i=0;i<N;i++) printf("%d ",x[i]); printf("\n"); printf("输入一个数字:"); scanf...

c语言程序经典实例#include <stdio.h> void printk(void) { printf(" "); } void printx(void) { printf("*"); } void main() { int n,i,j; printf("Please input n:"); scanf("%d",&n); for (i = 0;...

求C语言经典三角程序貌似我的这个游戏包含了一些三角概念,可以看看。 比如扫雷的思维和五子棋的矩阵 代码如下: #include#include#include#include#define N 19 int i,j,k,size=N;int isBlack=1;//...

急!C语言程序#include<stdio.h> #define pi1 2//几个学生 #define pi2 2//每个学生的成绩数目 int main(int argc, char* argv[]) { double a[pi1][pi2];//2个学生的成绩统计 for(int i=...

求经典C语言程序100例我只找到前10个【程序2】题目:企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高 于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提 成7.5%;20...

关于C语言100例#define nmax 50 main() { int i,k,m,n,num[nmax],*p; printf("please input the total of numbers:"); scanf("%d",&n); //输入人数; p=num; //把数组复给指针; for(i=0;i<n;i++)...

求C语言经典小程序!目的是熟悉C语言的使用技巧我知道有一个人写了一些文章然后有人整理了下来。 他写的东西都是代码, 而且是非常详细的注释那种的。 这个人叫管宁 你可以到网上搜搜。 我这里有给你贴出来一点,你可以看看...

关于C语言程序k str[k] 执行语句 打印 2--S-----default--S 3--W-----default--W 4--I-----default--I 5--L-----case 'L' 6--T-----default--T 7--E-----case'E':case'L' 8--C-----defau...

推荐阅读
图文推荐