给定若干个四位数,求出其中满足以下条件的数的个数:
个位数上的数字减去千位数上的数字,再减去百位数上的数字, 再减去十位数上的数字的结果大于零。
5 1234 1349 6119 2123 5017
3
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cmath> 5 using namespace std; 6 int main() 7 { 8 int n; 9 cin>>n; 10 int tot=0; 11 for(int i=1;i<=n;i++) 12 { 13 int a; 14 cin>>a; 15 if((a%10-((a/1000)%10)-((a/100)%10)-((a/10)%10))>0) 16 tot++; 17 } 18 cout<<tot; 19 return 0; 20 }
原文:http://www.cnblogs.com/zwfymqz/p/6480774.html