This file contains hidden or 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
| class Base { | |
| CONSECUTIVE_PAYMENTS = 3 | |
| ALLOWED_PAYMENTS_MEAN_DIFF_PERCENTEGE = 8 | |
| PAY_CYCLE = 31 | |
| constructor(loan) { | |
| this.loan = loan | |
| } | |
| paymentsData() { |
This file contains hidden or 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
| import React, { Component } from 'react'; | |
| import { | |
| View, | |
| StyleSheet, | |
| Image, | |
| } from 'react-native'; | |
| const styles = StyleSheet.create({ | |
| root: { | |
| flex: 1, |
This file contains hidden or 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
| Application Privacy Statement | |
| This privacy statement (“Privacy Statement”) applies to the treatment of personally identifiable information submitted by, or otherwise obtained from, you in connection with the associated application (“Application”). The Application is provided by OneClick (and may be provided by OneClick on behalf of a OneClick licensor or partner (“Application Partner”). By using or otherwise accessing the Application, you acknowledge that you accept the practices and policies outlined in this Privacy Statement. | |
| WHAT PERSONAL INFORMATION DOES OneClick COLLECT? | |
| We collect the following types of information from our users: | |
| Personal Information You Provide to Us: | |
| We may receive and store any information you submit to the Application (or otherwise authorize us to obtain – such as, from (for example) your Facebook account). The types of personal information collected may include your full name, email address, gender, IP address, browser information, username, demographic information, and an |
This file contains hidden or 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
| comando = "" | |
| saldo=[0] | |
| while (True): | |
| comando = input("Digite um comando:") | |
| print(comando) | |
| if(comando=="deposito"): | |
| depositar=int(input("Valor do depósito:")) | |
| if(depositar<0): | |
| print("nao aceitamos depositos negativos") |
This file contains hidden or 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
| /** | |
| * Polyfill for the vw, vh, vm units Requires StyleFix from -prefix-free | |
| * http://leaverou.github.com/prefixfree/ | |
| * | |
| * @author Lea Verou | |
| * | |
| * Contributor: Xandor Schiefer | |
| * Contributor: Guto Marrara Marzagão | |
| * | |
| */ |