This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Conversion.h" | |
/** | |
* @Author: ESSARE AYOUB | |
* Conversion Class | |
* Convert from Bin to Dec - Oct - Hex | |
*/ | |
void Conversion::main(std::vector<std::wstring> &args) | |
{ | |
// TODO Auto-generated method stub | |
int input = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @Author: ESSARE AYOUB | |
* Conversion Class | |
* Convert from Bin to Dec - Oct - Hex | |
*/ | |
import java.util.*; | |
public class Conversion { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.fochmobile.inc.adsmanager; | |
import android.content.Context; | |
import android.util.Log; | |
import android.view.View; | |
import com.google.android.gms.ads.AdListener; | |
import com.google.android.gms.ads.AdRequest; | |
import com.google.android.gms.ads.AdView; | |
import com.google.android.gms.ads.InterstitialAd; |