中国大学MOOC-翁恺-C语言程序设计习题集 10-3 到 11-1
10-3. 字符串逆序(15)
输入一个字符串,对该字符串进行逆序,输出逆序后的字符串。
输入格式:
输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。
输出格式:
在一行中输出逆序后的字符串。
输入样例:Hello World!
输出样例:
!dlroW olleH
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char a[100]; gets(a); int len=strlen(a),i; for(i=len-1;i>=0;i--) printf("%c",a[i]); printf("\n"); }
10-4. 字符串循环左移(20)
输入一个字符串和一个非负整数N,要求将字符串循环左移N次。
输入格式:
输入在第1行中给出一个不超过100个字符长度的、以回车结束的非空字符串;第2行给出非负整数N。
输出格式:
在一行中输出循环左移N次后的字符串。
输入样例:Hello World!
2
输出样例:
llo World!He
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char a[100]; int i,n; gets(a); scanf("%d",&n); int len=strlen(a); int cnt=n%len; for(i=cnt;i<len;i++) printf("%c",a[i]); for(i=0;i<cnt;i++) printf("%c",a[i]); printf("\n"); return 0; }
11-0. 平面向量加法(10)
本题要求编写程序,计算两个二维平面向量的和向量。
输入格式:
输入在一行中按照“x1 y1 x2 y2”的格式给出两个二维平面向量V1=(x1, y1)和V2=(x2, y2)的分量。
输出格式:
在一行中按照“(x, y)”的格式输出和向量,坐标输出小数点后1位(注意不能输出-0.0)。
输入样例:3.5 -2.7 -13.9 8.7
输出样例:
(-10.4, 6.0)
#include<stdio.h> #include<stdlib.h> struct vector { double x; double y; }; typedef struct vector vector; int main() { vector v[2]; while(scanf("%lf%lf%lf%lf",&v[0].x,&v[0].y,&v[1].x,&v[1].y)==4) { double hx=v[0].x+v[1].x; double hy=v[0].y+v[1].y; if(hx>-0.05&&hx<0.05) hx=0; if(hy>-0.05&hy<0.05) hy=0; printf("(%.1lf, %.1lf)\n",hx,hy); } return 0; }
11-1. 通讯录的录入与显示(10)
通讯录中的一条记录包含下述基本信息:朋友的姓名、出生日期、性别、固定电话号码、移动电话号码。 本题要求编写程序,录入N条记录,并且根据要求显示任意某条记录。
输入格式:
输入在第1行给出正整数N(<=10);随后N行,每行按照格式“姓名 生日 性别 固话 手机”给出一条记录。其中“姓名”是不超过10个字符、不包含空格的非空字符串;生日按“yyyy/mm/dd”的格式给出年月日;性别用“M”表示“男”、“F”表示“女”;“固话”和“手机”均为不超过15位的连续数字,前面有可能出现“+”。
在通讯录记录输入完成后,最后一行给出正整数K,并且随后给出K个整数,表示要查询的记录编号(从0到N-1顺序编号)。数字间以空格分隔。
输出格式:
对每一条要查询的记录编号,在一行中按照“姓名 固话 手机 性别 生日”的格式输出该记录。若要查询的记录不存在,则输出“Not Found”。
输入样例:3
Chris 1984/03/10 F +86181779452 13707010007
LaoLao 1967/11/30 F 057187951100 +8618618623333
QiaoLin 1980/01/01 M 84172333 10086
2 1 7
输出样例:
LaoLao 057187951100 +8618618623333 F 1967/11/30
Not Found
#include<stdio.h> #include<stdlib.h> #include<string.h> struct people { char name[100]; char birth[100]; char gender[10]; char GT[100]; char T[100]; }; int main() { struct people per[11]; int n,i; while(scanf("%d",&n)==1) { for(i=0;i<n;i++) { scanf("%s%s%s%s%s",&per[i].name,&per[i].birth,&per[i].gender,&per[i].GT,&per[i].T); } int m,num; scanf("%d",&m); for(i=0;i<m;i++) { scanf("%d",&num); if(num>=0&&num<n) { printf("%s %s %s %s %s\n",&per[num].name,&per[num].GT,&per[num].T,&per[num].gender,&per[num].birth); } else printf("Not Found\n"); } } }
版权声明:本文为博主原创文章,未经博主允许不得转载。
posted on 2015-07-29 00:46 Tob__yuhong 阅读(757) 评论(0) 编辑 收藏 举报