上一页 1 ··· 11 12 13 14 15
摘要: 1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int n, m,a,b,sumlin=0,summax=0; 6 cin >> n >> m; 7 int max[81][81],num[81]; 8 for(int l 阅读全文
posted @ 2017-11-04 10:41 TobicYAL 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int N, n,flat=0; 6 cin >> N >> n; 7 int chess[50][50]; 8 int col1, line1,col2,line2; 9 阅读全文
posted @ 2017-11-03 17:23 TobicYAL 阅读(2098) 评论(0) 推荐(0) 编辑
摘要: 例题(12.3) 忽略大小写的字符串比较 (1016) 1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 char ch1[80],ch2[80];int judge=0;//定义两个符号型数组来输入,设置一个判断数初 阅读全文
posted @ 2017-10-27 22:15 TobicYAL 阅读(650) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15