Advertisement
Rnery

C vs Python (comparison)

Nov 14th, 2022 (edited)
2,194
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.64 KB | Source Code | 1 0
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3.  
  4. #include
  5.  
  6. # Código em C
  7. int main(){
  8.  
  9. # Código em Python
  10. def main():
  11.     n = ""
  12.     resposta = True
  13.  
  14.     # Código em C
  15.     for(int i=0
  16.         i < 8
  17.         i++){
  18.         cin >> n
  19.         if(n > 1) resposta = false
  20.     }
  21.  
  22.     # Código em python
  23.     for n in range(8):
  24.         print(n)
  25.         if n > 1:
  26.             resposta = False
  27.  
  28.     # Código em C
  29.     if(resposta){        
  30.         cout << "S" << endl
  31.     else
  32.         cout << "F" <
  33.     }
  34.  
  35.     # Código em Python
  36.     if resposta:
  37.         print("S")
  38.     else:
  39.         print("F")
  40.  
  41. main() # invoca a função
Tags: python
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement