题解 第二章暴力求解| #abc#
abc
http://www.nowcoder.com/practice/912b15e237ef44148e44018d7b8750b6
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
for(int a=0;a<=9;a++)
for(int b=0;b<=9;b++)
for(int c=0;c<=9;c++)
if(a*100+b*110+c*12==532)
cout<<a<<" "<<b<<" "<<c<<" ";
}
王道机试指南刷题 文章被收录于专栏
计划刷完这本书