标签:while ios color es2017 技术 作业2 image end 分享
#include<iostream> using namespace std; int main() { int a=11,b=1,c; while(a>0,b<6){ c=a-2*b; cout<<c<<endl; b++; } return 0; }
#include<iostream> using namespace std; int main() { for (int a=1;a<=11;a++){ if(a%2==1) cout<<a<<endl; } return 0; }
标签:while ios color es2017 技术 作业2 image end 分享
原文地址:http://www.cnblogs.com/aipopo/p/7590355.html