信竞notes
#include<bits/stdc++.h>
using namespace std;
int main()  //递归 
{
	int x; 
	cin >> x;
	
	while(true)
	{
		cout << x %  10;
		x = x / 10;
		if (x==0) 
		break;
	}	
	return 0;
}
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
int main()
{
	int a,b,c;
	for(a=1;a<=3;a++)
	{
		for(b=1;b<=3;b++)
		 if(b==1&&a==1);
		 else if(a==3&&b==1||b==3);
		 else printf("%d %d\n",a,b);
	}
	return 0;
}
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
int main()
{
	int n=13,p=31;
	int s=1;
	int t=2;
	while(n!=0)
	{
		if(n%2==1)
		s=s*t%p;
		t=t*t%p;
		n=n/2;
	}
	cout<<s;
	return 0;
}
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
int main()
{
	int a=1,s=0;
	for (int i=1;i<=10;i++)
	{
		a=a*i;
		s=s+a;
	}
	printf("%d",s);
}
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
int main()
{ 
	int x,flag,s;
	
	for(x=2;x<=1000;x++)
	{
		s=0;
		for(int i=1;i<=x-1;i++)
	 {
	
		if(x%i==0)
		{
			s=s+i;
		}
	 }
	 if (s==x) printf("%d\n",x);
	}
	
	

	return 0;
}
   
#include<bits/stdc++.h>
#include<cmath>
using namespace std;
int main()
{ 
	int x,flag;
	
	for(x=3;x<=100;x++)
	{
		int flag=0;
		for(int i=2;i<=sqrt(x)-1;i++)
	 {
	
		if(x%i==0)
		{
			flag=1;
			break;
		}
	 }
	 if (flag==0) printf("%d\n",x);

	}
	


	return 0;
}
   
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇