- 一片容量为16GB的SD卡能存储大约( )张大小为2MB的数码相片。
 
A. 4000 B.8000 C.1600 D.16000
2. 阅读程序写结果
#include<iostream>
using namespace std;
int main(){
    int i=0;
    while(i<=8){
		cout<<i<<'';
		i=i+4;
	}
	cout<<i<<endl;
return 0;
}
输出:
3.完善程序
求6+12+18+24+……+180的和是多少。
#include<iostream>
using namespace std;
int main(){
    int i=6,sum=0;
    while(i<=180){
		(        );
		(		);
	}
	cout<<"sum="<<sum<<endl;
return 0;
}
                
                  
                  
                  
                  
                            
      
          
                
                
                
                
              
                
                
                
                
                
              
                
                
                    
              
            
                  
					3947
					
被折叠的  条评论
		 为什么被折叠?
		 
		 
		
    
  
    
  
					
					
					


            