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
<?php | |
include('conn.php'); | |
mysql_select_db($basedados, $conn); | |
$qryResultado = "SELECT * FROM noticias ORDER BY id_noticias DESC"; | |
$resResultado = mysql_query($qryResultado, $basedados) or die(mysql_error()); | |
while($linha = mysql_fetch_assoc($resResultado)) { | |
echo "<h1>".$linha['titulo_noticia']."</h1>"; | |
echo "<br />"; |
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
/* | |
Template Name: Principal | |
*/ |
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 <stdlib.h> | |
#include <stdio.h> | |
main() { | |
int n[8], i, soma, cont; | |
soma = 0; | |
cont = 0; | |
for(i = 1; i <= 8; i++) { |
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 <stdlib.h> | |
#include <stdio.h> | |
main() { | |
int n[8], i, soma, cont; | |
soma = 0; | |
cont = 0; | |
for(i = 1; i <= 8; i++) { |
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 <stdlib.h> | |
#include <stdio.h> | |
main() { | |
int nPositivos, nNegativos, n, cont; | |
float porcNegativos; | |
nPositivos = 0; | |
cont = 0; | |
porcNegativos = 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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
//Criar um programa que permita o usuário informar 20 números inteiros e apresente: | |
//a) Qtd de números positivos.(nr>0) | |
//b) Qtd de número negativo.(nr<0) | |
//c) Percentual de números pares. (positivo) (nr%2==0) | |
//d) A metade da qtd de números impares. (positivo) |
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 <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
// Uma pesquisa sobre algumas características físicas da população de uma determinada | |
// região coletou os seguintes dados, referentes a cada habitante, para serem analisados: | |
// Sexo (masculino, feminino) | |
// Cor dos olhos (azuis, verdes, castanhos) | |
// Cor dos cabelos (louros, castanhos, pretos) | |
// Idade em anos. |
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 <stdlib.h> | |
#include <stdio.h> | |
//Numa universidade, os alunos de informática fizeram uma prova de algoritmos. Cada | |
//turma possui um número de alunos. Criar um algoritmo que imprima: | |
//Quantidade de alunos aprovados (nota >= 5,0); | |
//Média de cada turma; | |
main() { | |
int nTurmas, nAlunos, iTurmas, iAlunos, nAprovados; |
NewerOlder