Ⅰ 用c语言编一个程序实现在屏幕上输出“北京2008奥运会(换行) 然后下一行是 WE ARE READY
void
main()
{
printf("北京2008奥运会");
printf("\n");
/*换行*/
printf("WE
ARE
READY");
getch();
/*程序暂停,按任意键退出*/
}
Ⅱ C语言编程:奥运奖牌计数 2008年北京奥运会,A国的运动员参与了n天的决赛项目(1≤n≤17)。
var n:1..17; a,b,c:array[1..17] of integer; i:1..17; aa,bb,cc,sum:integer; f:text;begin assign(f,'金银铜牌.in'); reset(f); readln(f,n); for i:=1 to n do readln(f,a[i],b[i],c[i]); close(f); aa:=0; bb:=0; cc:=0; sum:=0; for i:=1 to n do begin aa:=aa+a[i]; bb:=bb+b[i]; cc:=cc+c[i]; end; sum:=aa+bb+cc; writeln(aa:3,bb:3,cc:3,sum:3);end.
Ⅲ C语言问题;编程实现按奥运会参赛国国名在字典中的顺序对其入场次序进行排序.假设参赛国不超过150个.
#include <stdio.h>
#include <string.h>
main()
{
char a[5][10],t[10];
int i,j;
for(i=0;i<5;i++)
{
printf("请输入第%d个同学名字:",i+1);
gets(a[i]);
}
for(i=1;i<5;i++)
for(j=0;j<5-i;j++)
if(strcmp(a[j],a[j+1])<0)
{
strcpy(t,a[j]);
strcpy(a[j],a[j+1]);
strcpy(a[j+1],t);
}
for(i=0;i<5;i++)
puts(a[i]);
}
Ⅳ c语言奥运会开幕式
这是一个约瑟夫环的问题。这个问题c语言实现代码如下:
#include <stdio.h>
#include <stdlib.h>
struct _Node
{
int data;
struct _Node *next;
};
typedef struct _Node node_t;
typedef struct _Linklist
{
node_t * phead;
node_t * ptail;
int len;
}Linklist;
static node_t * GetNode( int i ) // 新建并初始化节点
{
node_t *pNode;
pNode = ( node_t * )malloc( sizeof( node_t ) );
if(!pNode)
{
printf("Error,the memory is not enough!\n");
exit(-1);
}
pNode -> data = i;
pNode -> next = NULL;
return pNode;
}
void init_list( Linklist *plist ) // 用第一个节点初始化循环单链表
{
node_t *p;
p = GetNode( 1 );
// printf("The New Node is: %d\n", p -> data); // **** TEST ****
plist -> phead = p;
plist -> ptail = p;
p -> next = plist -> phead;
plist -> len = 1;
}
static void Create_List( Linklist *plist, int n ) // 把其余数据添加到循环单链表中
{
int i = 0;
node_t *pNew;
for(i=2;i<=n;i++)
{
pNew = GetNode( i );
/******** TEST ********
printf("The New Node is: %d\n", pNew -> data);
******** TEST ********/
plist -> ptail -> next = pNew;
plist -> ptail = pNew;
pNew -> next = plist -> phead;
plist -> len ++;
}
printf("Completes the e-way circulation chain table the foundation!\n");
}
void Print_List( Linklist *plist ) // 输出链表内容
{
node_t *pCur = plist -> phead;
do
{
printf("The %d person.\n", pCur -> data );
pCur = pCur -> next;
}while( pCur != plist -> phead );
printf("The length of the List: %d\n", plist -> len );
}
void joseph( Linklist *plist, int m ) //约瑟夫回环函数实现
{
node_t *pPre = plist -> ptail;
node_t *pCur = plist -> phead;
int i;
while( plist -> len != 1 )
{
i = 0;
while( i < m-1 )
{
pPre = pPre -> next;
i ++;
}
pCur = pPre -> next;
pPre -> next = pCur -> next;
free( pCur );
plist -> len --;
}
printf("The last one is: %d\n", pPre -> data );
}
int main()
{
int n = 0;
printf("输入学生人数 ");
scanf("%d", &n );
int m = 0;
printf("输入m的值 ");
scanf("%d", &m );
Linklist pList;
init_list( &pList );
Create_List( &pList, n );
Print_List( &pList );
joseph( &pList, m );
return 0;
}
Ⅳ 陈清晨C语言式鼓劲儿,有多重要能起到多大效果
羽毛球女双小组第三轮角逐,来自广东队的陈清晨与搭档贾一凡以2比1逆转韩国队组合金昭映/孔熙容,纍积三战三胜以小组第一挺进八强。陈清晨也凭借在比赛中激情澎湃给自己加油而登上热搜。一开始我方士气就一直不太高,而且第一局输了,感觉还在进状态,而韩国对手比赛过程中一直在又喊又吼,发球也喊、自己接球也喊、我们接球也喊,甚至球还没落地,她们喊的声音已经落地了。
韩国选手的聒噪或许激怒了陈清晨。之后得分,陈清晨就发出了一声:“我”,清晰且响亮。韩国朋友可能并不理解这句话的意思,也不知道从这句话开始,中国C语言的强悍力到底有多大。
赛后因为的话题被推上微博热搜,对此陈清晨澄清原因,也做出反省。不过网友却并没有觉得此行为不妥,鼓励陈清晨就应当大胆释放自己,还有网友评论:“起最清新的名字,杀最重的球,讲最美的中国话!”
尽管这不是一场关系到奖牌的比赛,但是,由于性格直爽的陈清晨以独特的方式为自己加油,她的比赛片段登上热搜,赢得网友们纷纷点赞。这是24岁的陈清晨第一次参加奥运会,她透露自己和贾一凡状态良好,非常有信心冲击奖牌,她将勇往直前,为祖国争光,为家乡添彩。祝愿女双顶峰相见拿两块奖牌!
Ⅵ c语言编程 实验三:第30届夏季奥运会将于2012年7月27日在伦敦举行,本届奥运.....新手求教!
1 用二维数组char name[1000][50];
2 国家名字肯定是字符串而不是单个字符,用scanf("%s",name[n]);
3 交换国家名字时用strcpy进行字符串的复制
Ⅶ 用C语言怎样编辑奥运五环图案
编写一个程序就可以打出来了 如果你只是要把图形显示在DOS上那么直接用第一个程序就可以了(在程序里*号该空格的就空格,我复制进来的时候有空格的,可我也不知道怎么的显示在网页上的时候就没有空格了): 第一个程序: #include<iostream> using namespace std; void main() { cout<<"(四个)*"<<endl; cout<<"(三个)***"<<endl; cout<<"(两个)*****"<<endl; cout<<"(一个)*******"<<endl; cout<<"*********"<<endl; cout<<"(一个)*******"<<endl; cout<<"(两个)*****"<<endl; cout<<"(三个)***"<<endl; cout<<"(四个)*"<<endl; } 如果你是要把图行保存在一个TXT文本里,那你就用下面这个程序二: 程序二: #include <stdio.h> #include <stdlib.h> #include <string.h> void main() { FILE *fp; char str[80]; if((fp=fopen("tuxing.txt","w"))==NULL) { printf("Cannot open file"); exit(0); } do { printf("Enter a string (Cr to quit):\n"); gets(str); if(*str!='\n') { strcat(str,"\n"); fputs(str,fp); } }while(*str!='\n'); printf("\n\n Displaying Contents of File JAK1\n\n"); rewind(fp); while (!feof(fp)) { fgets(str,81,fp); printf("\n%s",str); } fclose(fp); } //输入方法:把你要显示的图形一行一行的输入进去,输入结束之后按会车键就可以退出,再去程序目录下打开tuxing.txt文件就可以看见你要的图形了
Ⅷ 奥运奖牌计数 c语言怎么编程
#include<stdio.h>
intmain()
{
inti,n,medal[3],a[100];
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d%d%d",&medal[0],&medal[1],&medal[2]);
a[i]=medal[0]+medal[1]+medal[2];
}
for(i=0;i<n;i++)
printf("%d ",a[i]);
return0;
}