题解列表

筛选

A+B for Input-Output Practice (IV)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n,i,sum=0;    cin>>n;    whi……

for的引用破解密码

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    string s;    cin>>s;    for(auto……

小数点后保留N位

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    float a,c;  c……

用筛法求之N内的素数。

摘要:解题思路:注意事项:参考代码:from math import *n=int(input())def pd(x):    if x==2:        return True    else:   ……

字符串的输入输出处理

摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n):    s=input()    print(s)    print()while True:    s=……

The 3n + 1 problem

摘要:解题思路:注意事项:参考代码:def f(x):    c=1    while x!=1:        if x%2==0:            x=x//2        else:     ……

C++进制转换输出

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a;    cin>>a;    cout<<oct<<……

编写题解 1116: IP判断

摘要:解题思路:注意事项:参考代码:while True:    s=input()    if s==&#39;End of file&#39;:        break    a,b,c,d=s.sp……

学生信息管理系统

摘要:解题思路:注意事项:参考代码:第一章  总则  第一条 为了维护学校正常的教育教学秩序,培养德、智、体全面发展的社会主义事业建设者和接班人,根据教育部《普通高等学校学生管理规定》、《高等学校学生行为准……

编写题解 1248: 简单的事情

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;unsigned long long int jiecheng(int n){    if(n……