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 pandas as pd | |
import re | |
import json | |
import openpyxl | |
import os | |
import codecs | |
df = pd.read_excel('./translations.xlsx', sheet_name = 0) | |
titles = [] |
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
#include <stdio.h> | |
#include <math.h> | |
int main(void) { | |
/*** URI Desafio 1010 ***/ | |
int cod1, np1, cod2, np2; | |
float val1, val2, total; |
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
#include <stdio.h> | |
#include <math.h> | |
int main(void) { | |
/*** URI Desafio 1010 ***/ | |
int cod1, np1, cod2, np2; | |
float val1, val2, total; |
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
#include <stdio.h> | |
#include <math.h> | |
int main(void) { | |
float a,b,c,delta; | |
printf("Digite o valor de a: \n"); | |
scanf("%f", &a); |