摘要: #include<iostream> using namespace std; void main() { char instr[100]; cout<<"请输入一行字符串:"; cin>>instr; for(int i=0;i<strlen(instr);i++){ if (instr[i]>= 阅读全文
posted @ 2020-02-16 14:52 Andhui 阅读(2731) 评论(0) 推荐(0) 编辑
摘要: // 5-1 找数组最大值及下标#include<iostream> using namespace std; int main() { int a[10]={17,85,67,83,49,26,92,38,42}; int max,num=0; max=a[0]; for(int i=0;i<10 阅读全文
posted @ 2020-02-16 13:42 Andhui 阅读(1522) 评论(0) 推荐(0) 编辑