java--study||O.o--循环
摘要:参考代码:import java.util.Scanner;public class Main {&……
java--study||O.o--高斯
摘要:参考代码:import java.util.Scanner;public class Main {&……
最简单的C代码(没有之一)——分苹果
摘要:解题思路:最少分的苹果数就是第N位小朋友可以分到N个苹果。等差数列和公式为:(n+1)*n/2;注意事项:参考代码:#include<stdio.h>intmain(){ ……
题解 3012: 分苹果
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ intn,s=0……
编写题解 3012: 分苹果
摘要:解题思路:注意事项:参考代码:n=int(input())apple=0foriinrange(1,n+1): apple+=iprint(apple)……
解法有很多,多思考进步才会大(简单解法)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,sum=0; &……