2020年7月PAT甲级真题 Prime Day

题目

题意:

判断给出的时间字符串及其子串是否全是素数

tips:素数判断+字符串处理

#include
#include
#include
using namespace std;
bool prime(int n) {
	if(n==1||n==0)
		return false;
	if(n==2)
		return true;
	for(int i=2; i>n;
	int ans;
	while(n.size()>1) {
		int ans=0;
		string temp=n;
		for(int i=temp.size()-1;i>=0;--i)
		ans+=(temp[i]-'0')*10;
		cout<

 

你可能感兴趣的:(练习)