题解 1855: 输出字符'A'个数

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

筛选

送分了........

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

简单易懂1855

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,i; scanf("%d",&N); for(i=0;i<N;i++) printf("A") ; ……

1855,好懂的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,t; t<=100; scanf("%d",&t); for(i=1;i<=t;i++){ pri……

输出字符'A'个数-题解(C语言代码)

摘要:本题较为简单,只涉及一个知识点:“循环”即可 参考代码如下: ```c #include int main() { int i,a;//a为定义循环个数 scanf("%d",&……