解题思路:
注意事项:
参考代码:
#include<iostream> #include<cmath> #include<bits/stdc++.h> using namespace std; void Compare(int a,int b) { cout<<(a>b?a:b)<<endl; } void Compare(char c1,char c2) { cout<<abs((int)(c1-c2))<<endl; } void Compare(const string &str1,const string &str2) { if(str1>str2) cout<<str1<<endl; else cout<<str2<<endl; } int main() { int a,b; char c1,c2; string str1,str2; cin>>a>>b>>c1>>c2>>str1>>str2; Compare(a,b); Compare(c1,c2); Compare(str1,str2); return 0; }
0.0分
0 人评分
C二级辅导-同因查找 (C语言代码)浏览:592 |
C语言训练-求函数值 (C语言代码)浏览:976 |
回文串 (C语言代码)浏览:3095 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:672 |
C语言训练-大、小写问题 (C语言代码)浏览:719 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:985 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:607 |
1073题解浏览:652 |