2012年7月3日火曜日

AOJ Volume0 0008: Sum of 4 Integers

/***********************
*  2012/03/21          *
*  AOJ Volume0 0008    *
*  Sum of 4 Integers   *
*  crane               *
************************/
#include<iostream>
using namespace std;

int main(){

    int n,result;
    while(cin >> n){
        result = 0;
    for(int a=0; a<=9; a++){
        for(int b=0; b<=9; b++){
            for(int c=0; c<=9; c++){
                for(int d=0; d<=9; d++){
                    if(a+b+c+d==n){
                        result += 1;
                    }
              
                }
            }
        }
    }
    cout << result << endl;
    }
    return 0;
}

0 件のコメント:

コメントを投稿