题解 1135: C语言训练-求s=a+aa+aaa+aaaa+aa...a的值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

暴力就完事

摘要:```c #include #include int main() { int a,n,i; scanf("%d%d",&a,&n); int *result=(int*)ma……

没有比我更简单的了

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d\n",&x); int a; scanf("%d",&a); int sum=……

巧用数组和字符串来解题

摘要:解题思路:就是简单的字符串和数组的使用注意事项:没啥要注意的参考代码:n=list(input().split( )) str=str(n[0]) n=int(n[1]) sum=0 for ……