题解列表
图形输出(C++11新特性-原始字符串)
摘要:解题思路:使用cout<<R"()";使用了C++11新特性 raw string literal参考代码:#include<bits/stdc++.h>
using namespace std;
……
*****************************************
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,s=0; scanf("%d",&n); /*i=n; while(n……
简单python走起
摘要:解题思路:。。注意事项:。。参考代码:n=[list(map(int,input().split()))]i=0while n[i][0]>0 and n[i][1]>0: n.append(l……
简单python走起
摘要:解题思路:注意事项:参考代码:while True: m=list(map(int,input().split())) m.sort() if m[0]+m[1]>m[2]: ……
简单python走起
摘要:解题思路:注意事项:参考代码:while True: n=int(input()) if 90<=n<=100: print('A') elif 75<……
简单python走起
摘要:解题思路:注意事项:参考代码:while True: mas=list(map(int,input().split())) mas.pop(0) mas.sort(reverse=T……
!!绝对最简单!!!!!
摘要:解题思路:看见那个输出案例了吗?两个循环就好了,除的尽就放进计数器 然后搞完再写个循环判别你计数的因子和 回去判别是不是相同这个代码没兴趣写 ,没什么难度注意事项:复制下去注意输出参考代码:#incl……