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

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

筛选

1855,好懂的方法

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

送分了........

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

输出字符'A'个数 (C++代码)

摘要:解题思路:注意事项:不要打多于的代码;参考代码:#include<iostream>using namespace std;int main(){    int a,i,n;    cin>>n;  ……