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<stdio.h> | |
int main() | |
{ | |
int a; | |
printf ("Podaj z ilu liczb chcesz liczyc srednia:\n"); | |
scanf ("%i", &a); | |
int b; | |
int 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 "Game.h" | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#include <errno.h> | |
#include <string.h> | |
void botPlays(void) | |
{ |
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
import java .awt.* ; | |
import java.awt.event.* ; | |
import javax.swing.*; | |
import static java.lang.Math.abs; | |
import java.util.Scanner; | |
import java.util.List; | |
import java.util.ArrayList; | |
import javax.swing.event.ChangeEvent; | |
class Calculations//obliczenia |
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
using System; | |
namespace zad_6 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Podaj interwal wysokosci"); | |
double wysokosc = Convert.ToDouble(Console.ReadLine()); |