码迷,mamicode.com
首页 >  
搜索关键字:乙级    ( 449个结果
PTA 乙级 1010 一元多项式求导 (25分)
今天的题虽然简单,但是有个细节一定要注意,先放代码: 1 #include<iostream> 2 #include<vector> 3 using namespace std; 4 5 int main() { 6 int n = 0; 7 vector<int> num; //vector动态处 ...
分类:其他好文   时间:2020-06-28 09:28:34    阅读次数:42
PTA 乙级 1009 说反话
今天的题简单,一会儿多做一道 Python 首先想到的是用py去做,字符串获取后用split直接分割,分割后输出就行,没有难度 1 s = input() 2 word = s.split(" ") 3 i = len(word) 4 while(i!=1): 5 print(word[i-1],e ...
分类:其他好文   时间:2020-06-26 22:31:19    阅读次数:72
PTA 乙级 1006 换个格式输出整数 (15分)
1 #include<iostream> 2 using namespace std; 3 4 int main() { 5 int n = 0; 6 cin >> n; 7 int b = n / 100; 8 int s = n / 10 % 10; 9 int g = n % 10; 10 i ...
分类:其他好文   时间:2020-06-25 10:06:03    阅读次数:46
PTA 乙级 1003 我要通过! (20分)
1 num = eval(input()) 2 an = [] 3 for i in range(0,num): 4 str = input() 5 P = str.count('P') 6 T = str.count('T') 7 A = str.count('A') 8 sum = P+T+A ...
分类:其他好文   时间:2020-06-25 09:53:59    阅读次数:89
PTA 乙级 1007 素数对猜想 (20分)
1 #include<iostream> 2 #include <cmath> 3 using namespace std; 4 5 bool isprime(int i) { 6 for (int j = 2; j <= sqrt(i); ++j) { 7 if (i % j == 0) { 8 ...
分类:其他好文   时间:2020-06-25 09:53:45    阅读次数:67
PTA 乙级 1005 继续(3n+1)猜想 (25分)
1 #include <iostream> 2 #include <vector> 3 #include <algorithm> 4 using namespace std; 5 bool cmp(int a, int b) { 6 return a > b; 7 } 8 int main() { ...
分类:其他好文   时间:2020-06-25 09:46:47    阅读次数:57
PTA 乙级 1002 写出这个数 (20分)
1 #include<stdio.h> 2 3 int main(){ 4 char str[10][5] = {"ling","yi","er","san","si","wu","liu","qi","ba","jiu"}; 5 char num[100]; 6 int sum = 0, i = ...
分类:其他好文   时间:2020-06-25 09:41:49    阅读次数:63
PTA 乙级 1004 成绩排名 (20分)
写的很冗余,也没考虑类之间的关系,还能更简洁,更高效,仅做参考 有时间考虑做一个学生数据库 1 import java.util.Arrays; 2 import java.util.HashMap; 3 import java.util.Scanner; 4 5 public class Main ...
分类:其他好文   时间:2020-06-25 09:18:25    阅读次数:65
PTA 乙级 1001 害死人不偿命的(3n+1)猜想 (15分)
1 #include<stdio.h> 2 3 int main(){ 4 int n = 0; 5 int num = 0; 6 //printf("请输入一个不超过1000的正整数:"); 7 scanf("%d", &num); 8 while(num != 1){ 9 if(num%2 == ...
分类:其他好文   时间:2020-06-25 09:17:48    阅读次数:64
PAT 乙级 1059.C语言竞赛 C++/Java
C 语言竞赛是浙江大学计算机学院主持的一个欢乐的竞赛。既然竞赛主旨是为了好玩,颁奖规则也就制定得很滑稽: 0、冠军将赢得一份“神秘大奖”(比如很巨大的一本学生研究论文集……)。 1、排名为素数的学生将赢得最好的奖品 —— 小黄人玩偶! 2、其他人将得到巧克力。 给定比赛的最终排名以及一系列参赛者的 ...
分类:编程语言   时间:2020-05-25 15:35:39    阅读次数:59
449条   上一页 1 2 3 4 5 6 ... 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!