- 
                Notifications
    
You must be signed in to change notification settings  - Fork 164
 
binary_converter.cpp #433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
binary_converter.cpp #433
Conversation
| 
           programma per convertire un valore decimale in un binario.  | 
    
| 
           controlla il workflow codestyle  | 
    
        
          
                exercises/binary_converter.cpp
              
                Outdated
          
        
      | 
               | 
          ||
| cout << "Il numero: " << x << " in binario è " << binary << endl; | ||
| 
               | 
          ||
| return 0; | 
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potresti incrementare la leggibilità del codice con la seguente modifica:
#define EXIT_SUCCESS 0;| return 0; | |
| return EXIT_SUCCESS; | 
Oppure quelle definite già nell'apposita libreria
fix: aggiunto caso base
| 
           il workflow codestyle ancora fallisce  | 
    
No description provided.