PTA
PTA刷题
笨鸟吼吼飞
这个作者很懒,什么都没留下…
展开
-
1008 数组元素循环右移问题 (20分)
#include <stdio.h>#include<stdlib.h>//包含system()函数的头文件void Reverse(int a[], int front, int after) { int middle = (front + after) / 2; int length = after - front + 1; int temp; for (...原创 2020-02-16 22:10:41 · 97 阅读 · 0 评论 -
1007 素数对猜想 (20分)
#include <stdio.h>#include <stdlib.h>#include<math.h>int isSushu(int num) { for (int i = 2; i <= sqrt(num); i++) { if (num % i == 0) return 0; } return 1;};int main...原创 2020-02-16 21:19:16 · 118 阅读 · 0 评论 -
1005 继续(3n+1)猜想 (25分)
开辟一个数组,来记录a[i]中关键字为了控制空格的格式,可以开辟一个新的数组#include <stdio.h>#include<stdlib.h>//包含system()函数的头文件#define N 10000int main() { int k; int a[100]; int b[N]; int c[100]; int i,j; int tm...原创 2020-02-13 20:22:59 · 93 阅读 · 0 评论 -
1004 成绩排名 (20分)
使用了结构体数组#include <stdio.h>#include<stdlib.h>//包含system()函数的头文件struct Student{ char name[20]; char studentID[20]; int grade;};int main() { int n;//假定n<1000(平台提交时,n=100会发生运行时错...原创 2020-02-13 19:24:07 · 109 阅读 · 0 评论 -
1003. 我要通过
#include <stdio.h>#include<stdlib.h>//包含system()函数的头文件#include <string.h>int main() { int num; char str[105]; int flag;//如果不和格式标记为1 int count_P, count_T;//计算P和T的数量,它们的数量只能为1...原创 2020-02-13 15:26:07 · 79 阅读 · 0 评论 -
1002 写出这个数 (20分)
#include <stdio.h>#include <stdlib.h>#define N 100#define M 5int main(){ char numChar[10][5]={"ling","yi","er","san","si","wu","liu","qi","ba","jiu"};//初始化数组 int sum=0; ...原创 2020-02-11 20:09:45 · 80 阅读 · 0 评论